/* cmsms stylesheet: pushy nav modified: 02/23/21 22:26:20 */
/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
  position: fixed;
  width: 220px;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #454545; /*191918*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */
}
.pushy-link {
  color: #ffffff; /*b3b3b1*/
}
.pushy a {
  display: block;
  color: #ffffff; /*b3b3b1*/
  padding: 15px 30px;
  text-decoration: none;
  transition-duration: .2s;
}
.pushy a:hover {
  color: #919191 !important; /*FFFFFF*/
}
.pushy ul:first-child {
  /*margin-top: 10px;*/
}
.pushy.pushy-left {
  left: 0;
}
.pushy.pushy-right {
  right: 0;
}

.pushy-content {
  visibility: hidden;
}

.pushy-content .main {
  margin-top: 20px;
}

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-220px, 0, 0);
  -ms-transform: translate3d(-220px, 0, 0);
  transform: translate3d(-220px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(220px, 0, 0);
  -ms-transform: translate3d(220px, 0, 0);
  transform: translate3d(220px, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-200px, 0, 0);
  -ms-transform: translate3d(-200px, 0, 0);
  transform: translate3d(-200px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;
}

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Submenu Appearance */
.pushy-submenu {
  /* Submenu Buttons */
  /* Submenu Icon */
}
.pushy-submenu ul {
  padding-left: 15px;
  transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.pushy-submenu ul .pushy-link {
  transition: opacity 0.2s ease-in-out;
}
.pushy-submenu button {
  width: 100%;
  color: #b3b3b1;
  padding: 15px 30px;
  text-align: left;
  background: transparent;
  border: 0;
}
.pushy-submenu button:hover {
  color: #FFF;
}
.pushy-submenu > a,
.pushy-submenu > button {
  position: relative;
}
.pushy-submenu > a::after,
.pushy-submenu > button::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  right: 15px;
  background: url("../../images/arrow.svg") no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: transform 0.2s;
}

/* Submenu Movement */
.pushy-submenu-closed ul {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
}
.pushy-submenu-closed .pushy-link {
  opacity: 0;
}

.pushy-submenu-open {
  /* Submenu Icon */
}
.pushy-submenu-open ul {
  max-height: 1000px;
  visibility: visible;
}
.pushy-submenu-open .pushy-link {
  opacity: 1;
}
.pushy-submenu-open a::after,
.pushy-submenu-open button::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
/* cmsms stylesheet: normalize modified: 11/11/16 19:56:09 */
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}
/* cmsms stylesheet: basscss modified: 11/05/16 18:48:49 */
/*! Basscss | http://basscss.com | MIT License */.h1{font-size:2rem}.h2{font-size:1.5rem}.h3{font-size:1.25rem}.h4{font-size:1rem}.h5{font-size:.875rem}.h6{font-size:.75rem}.font-family-inherit{font-family:inherit}.font-size-inherit{font-size:inherit}.text-decoration-none{text-decoration:none}.bold{font-weight:700}.regular{font-weight:400}.italic{font-style:italic}.caps{text-transform:uppercase;letter-spacing:.2em}.left-align{text-align:left}.center{text-align:center}.right-align{text-align:right}.justify{text-align:justify}.nowrap{white-space:nowrap}.break-word{word-wrap:break-word}.line-height-1{line-height:1}.line-height-2{line-height:1.125}.line-height-3{line-height:1.25}.line-height-4{line-height:1.5}.list-style-none{list-style:none}.underline{text-decoration:underline}.truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.list-reset{list-style:none;padding-left:0}.inline{display:inline}.block{display:block}.inline-block{display:inline-block}.table{display:table}.table-cell{display:table-cell}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-auto{overflow:auto}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.left{float:left}.right{float:right}.fit{max-width:100%}.max-width-1{max-width:24rem}.max-width-2{max-width:32rem}.max-width-3{max-width:48rem}.max-width-4{max-width:64rem}.border-box{box-sizing:border-box}.align-baseline{vertical-align:baseline}.align-top{vertical-align:top}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.m0{margin:0}.mt0{margin-top:0}.mr0{margin-right:0}.mb0{margin-bottom:0}.ml0,.mx0{margin-left:0}.mx0{margin-right:0}.my0{margin-top:0;margin-bottom:0}.m1{margin:.5rem}.mt1{margin-top:.5rem}.mr1{margin-right:.5rem}.mb1{margin-bottom:.5rem}.ml1,.mx1{margin-left:.5rem}.mx1{margin-right:.5rem}.my1{margin-top:.5rem;margin-bottom:.5rem}.m2{margin:1rem}.mt2{margin-top:1rem}.mr2{margin-right:1rem}.mb2{margin-bottom:1rem}.ml2,.mx2{margin-left:1rem}.mx2{margin-right:1rem}.my2{margin-top:1rem;margin-bottom:1rem}.m3{margin:2rem}.mt3{margin-top:2rem}.mr3{margin-right:2rem}.mb3{margin-bottom:2rem}.ml3,.mx3{margin-left:2rem}.mx3{margin-right:2rem}.my3{margin-top:2rem;margin-bottom:2rem}.m4{margin:4rem}.mt4{margin-top:4rem}.mr4{margin-right:4rem}.mb4{margin-bottom:4rem}.ml4,.mx4{margin-left:4rem}.mx4{margin-right:4rem}.my4{margin-top:4rem;margin-bottom:4rem}.mxn1{margin-left:-.5rem;margin-right:-.5rem}.mxn2{margin-left:-1rem;margin-right:-1rem}.mxn3{margin-left:-2rem;margin-right:-2rem}.mxn4{margin-left:-4rem;margin-right:-4rem}.ml-auto{margin-left:auto}.mr-auto,.mx-auto{margin-right:auto}.mx-auto{margin-left:auto}.p0{padding:0}.pt0{padding-top:0}.pr0{padding-right:0}.pb0{padding-bottom:0}.pl0,.px0{padding-left:0}.px0{padding-right:0}.py0{padding-top:0;padding-bottom:0}.p1{padding:.5rem}.pt1{padding-top:.5rem}.pr1{padding-right:.5rem}.pb1{padding-bottom:.5rem}.pl1{padding-left:.5rem}.py1{padding-top:.5rem;padding-bottom:.5rem}.px1{padding-left:.5rem;padding-right:.5rem}.p2{padding:1rem}.pt2{padding-top:1rem}.pr2{padding-right:1rem}.pb2{padding-bottom:1rem}.pl2{padding-left:1rem}.py2{padding-top:1rem;padding-bottom:1rem}.px2{padding-left:1rem;padding-right:1rem}.p3{padding:2rem}.pt3{padding-top:2rem}.pr3{padding-right:2rem}.pb3{padding-bottom:2rem}.pl3{padding-left:2rem}.py3{padding-top:2rem;padding-bottom:2rem}.px3{padding-left:2rem;padding-right:2rem}.p4{padding:4rem}.pt4{padding-top:4rem}.pr4{padding-right:4rem}.pb4{padding-bottom:4rem}.pl4{padding-left:4rem}.py4{padding-top:4rem;padding-bottom:4rem}.px4{padding-left:4rem;padding-right:4rem}.col{float:left}.col,.col-right{box-sizing:border-box}.col-right{float:right}.col-1{width:8.33333%}.col-2{width:16.66667%}.col-3{width:25%}.col-4{width:33.33333%}.col-5{width:41.66667%}.col-6{width:50%}.col-7{width:58.33333%}.col-8{width:66.66667%}.col-9{width:75%}.col-10{width:83.33333%}.col-11{width:91.66667%}.col-12{width:100%}@media (min-width:40em){.sm-col{float:left;box-sizing:border-box}.sm-col-right{float:right;box-sizing:border-box}.sm-col-1{width:8.33333%}.sm-col-2{width:16.66667%}.sm-col-3{width:25%}.sm-col-4{width:33.33333%}.sm-col-5{width:41.66667%}.sm-col-6{width:50%}.sm-col-7{width:58.33333%}.sm-col-8{width:66.66667%}.sm-col-9{width:75%}.sm-col-10{width:83.33333%}.sm-col-11{width:91.66667%}.sm-col-12{width:100%}}@media (min-width:52em){.md-col{float:left;box-sizing:border-box}.md-col-right{float:right;box-sizing:border-box}.md-col-1{width:8.33333%}.md-col-2{width:16.66667%}.md-col-3{width:25%}.md-col-4{width:33.33333%}.md-col-5{width:41.66667%}.md-col-6{width:50%}.md-col-7{width:58.33333%}.md-col-8{width:66.66667%}.md-col-9{width:75%}.md-col-10{width:83.33333%}.md-col-11{width:91.66667%}.md-col-12{width:100%}}@media (min-width:64em){.lg-col{float:left;box-sizing:border-box}.lg-col-right{float:right;box-sizing:border-box}.lg-col-1{width:8.33333%}.lg-col-2{width:16.66667%}.lg-col-3{width:25%}.lg-col-4{width:33.33333%}.lg-col-5{width:41.66667%}.lg-col-6{width:50%}.lg-col-7{width:58.33333%}.lg-col-8{width:66.66667%}.lg-col-9{width:75%}.lg-col-10{width:83.33333%}.lg-col-11{width:91.66667%}.lg-col-12{width:100%}}.flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}@media (min-width:40em){.sm-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}@media (min-width:52em){.md-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}@media (min-width:64em){.lg-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}}.flex-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.items-start{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;-ms-grid-row-align:flex-start;align-items:flex-start}.items-end{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;-ms-grid-row-align:flex-end;align-items:flex-end}.items-center{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;-ms-grid-row-align:center;align-items:center}.items-baseline{-webkit-box-align:baseline;-webkit-align-items:baseline;-ms-flex-align:baseline;-ms-grid-row-align:baseline;align-items:baseline}.items-stretch{-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;-ms-grid-row-align:stretch;align-items:stretch}.self-start{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start}.self-end{-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end}.self-center{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.self-baseline{-webkit-align-self:baseline;-ms-flex-item-align:baseline;align-self:baseline}.self-stretch{-webkit-align-self:stretch;-ms-flex-item-align:stretch;align-self:stretch}.justify-start{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.justify-end{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.justify-center{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.justify-around{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.content-start{-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.content-end{-webkit-align-content:flex-end;-ms-flex-line-pack:end;align-content:flex-end}.content-center{-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center}.content-between{-webkit-align-content:space-between;-ms-flex-line-pack:justify;align-content:space-between}.content-around{-webkit-align-content:space-around;-ms-flex-line-pack:distribute;align-content:space-around}.content-stretch{-webkit-align-content:stretch;-ms-flex-line-pack:stretch;align-content:stretch}.flex-auto{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;min-height:0}.flex-none{-webkit-box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none}.order-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-webkit-order:2;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-webkit-order:3;-ms-flex-order:3;order:3}.order-last{-webkit-box-ordinal-group:100000;-webkit-order:99999;-ms-flex-order:99999;order:99999}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.z1{z-index:1}.z2{z-index:2}.z3{z-index:3}.z4{z-index:4}.border{border-style:solid;border-width:1px}.border-top{border-top-style:solid;border-top-width:1px}.border-right{border-right-style:solid;border-right-width:1px}.border-bottom{border-bottom-style:solid;border-bottom-width:1px}.border-left{border-left-style:solid;border-left-width:1px}.border-none{border:0}.rounded{border-radius:3px}.circle{border-radius:50%}.rounded-top{border-radius:3px 3px 0 0}.rounded-right{border-radius:0 3px 3px 0}.rounded-bottom{border-radius:0 0 3px 3px}.rounded-left{border-radius:3px 0 0 3px}.not-rounded{border-radius:0}.hide{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}@media (max-width:40em){.xs-hide{display:none!important}}@media (min-width:40em) and (max-width:52em){.sm-hide{display:none!important}}@media (min-width:52em) and (max-width:64em){.md-hide{display:none!important}}@media (min-width:64em){.lg-hide{display:none!important}}.display-none{display:none!important}
/* cmsms stylesheet: main modified: 04/14/26 11:40:15 */
body, html { margin: 0; font-family: 'Comfortaa', sans-serif !important; font-weight:300; color:#444 !important; }
body {
background: #ffffff; /*#6e6796*/
transition: background 0.75s;
will-change: background color;
}
.content a:not(.imgmod) { color:#444444; text-decoration: none; border-bottom: 1px solid #444444; transition-duration: .2s; }
.content a:not(.imgmod):hover { border-bottom: 1px solid #fff; }
p sup {
    font-size: 0.6em;
    vertical-align: top;
}
p sub {
    font-size: 0.6em;
    vertical-align: bottom;
}
.container {
    max-width: 1920px;
    position: relative;
    margin: 0 auto;
    overflow-x: hidden;
}
img[data-src] {
   opacity: 0;
   transition: opacity .2s;
}
img.loaded {
   opacity: 1;
}
.showblock { display: block !important; }
.hide {display: none !important; }
.fit { height: auto; }
.opac { opacity: 1 !important;}
.screen-reader-only {
  position: absolute;
  width: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.hidden-alt {
  opacity: 0;
  pointer-events: none;
}

.skip-to-content-link {
  color: #fff;
  background-color:#000;
  font-family: Verdana, Arial;
  height: 30px;
  left: 50%;
  padding: 14px 12px 4px;
  position: absolute;
  transform: translateY(-100%) translateX(-50%);
  transition: transform 0.3s;
  z-index: 11;
}

.skip-to-content-link:focus {
  transform: translateY(0%) translateX(-50%);
}

/******* BANNER MODAL ********/
.banner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0,0,0, .85);
    text-align: center;
    z-index: 111;
    pointer-events: none;
    transition-property: opacity;
    transition-duration: 0.3s;
}
.banner-modal.show {
   opacity: 1;
   pointer-events: auto;
}
.banner-modal .close {
   position: absolute;
   top: 30px;
   right: 30px;
   width: 30px;
   height: 30px;
   line-height: 30px;
   font-size: 3em;
   color: #ddd;
   font-family: 'Helvetica';
   font-weight: 300;
   cursor: pointer;
}
.banner-modal img {
   position: relative;
   margin: 0 auto;
   top: 35%;
   width: 90%;
   max-width: 534px;
}

#header {
    max-height: 86vh;
}
/******* SLIDER + LOGO *******/
#slider1w {
    text-align: center;
    margin-bottom: 60px;
    backface-visibility: hidden;
    max-height: 86vh;
    /*min-height: 20vh;*/
}

/******* LOGO *******/
#logoholder {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    top: 441px;
    z-index: 10;
    opacity: 0 !important;
    transition-property: opacity;
    transition-duration: 2.2s;
}
#logoholder.opac,
.nivo-controlNav.opac {
opacity: 1 !important;
}
#logoholder {
top: auto;
margin-top: -200px;
}
#logoholder.solo {
margin-top: -200px;
}
#logo {
margin: 0 auto;
width: 28%;
min-width: 269px;
height: 140px;
line-height: 15em;
background: #454545;
}
#logo img {
box-sizing: border-box;
padding: 15px 20px;
max-width: 341px;
width: 100%;
height: auto;
}
#logoholder .sldpg_bg {
    padding: 10px 0 !important;
    display: inline-block;
    top: 0px;
    width: 28%;
    background-color: #252525;
}

/******* MAIN MENU *******/
#menu {
position: absolute;
z-index: 12;
top: 320px; /*398*/
left: 0;
width: 230px !important;
backface-visibility: hidden;
opacity: 0;
transition-property: opacity;
transition-duration: .2s;
}
.sticky {
  position: fixed !important;
  top: 10px !important;
}
.sticky:before,
.sticky:after {
    content: '';
    display: table;
}
#rmenu.sticky {
  position: fixed !important;
  top: 80px !important;
}
#menu .logo-top {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0;
    transition-property: opacity;
    transition-duration: .3s;
    cursor:pointer;
}
#menu .main {
background-color: #454545;
}
#menu .main > ul {
margin-top: 10px;
padding: 0;
margin-left: 40px;
transition-duration: .2s;
}
#menu .main .sectionheader {
color: #ffffff;
}
#menu .main li {
padding: 0;
margin: 0;
margin-bottom: 5px;
}
#menu .main  >ul > li > ul {
display: none;
/*height: 0;
visibility: hidden;
margin-top: 0px;*/
margin-top: 7px;
margin-left: 15px;
transition-property: visibility, margin-top, height;
transition-duration: .2s;
}
.showsub {
visibility: visible !important;
margin-top: 7px !important;
height: auto !important;

}
.hidesub {
visibility: hidden;
margin-top: 0px;
height: 0;
}
#menu .main a, #menu .main span {
padding: 0;
margin: 0;
font-size: 0.82175em; /*13.2px*/
color: #ffffff;
text-decoration: none;
transition-duration: .2s;
cursor: pointer;
}
#menu .main a:hover,
#menu .main a.currentpage,
#mobmenu .main a:hover,
#mobmenu .main a.currentpage {
color: #919191;
}
#menu .main a.currentsubpage {
/*color: #D45C35;*/
}
#menu .main a.currentsubpage::before {
    content: '\2022';
    position: relative;
    margin-left: -9px;
    margin-right: 4px;
}
#menu .menu-divi {
border:none; 
border-top: 1px solid #838383;
margin-top: 10px;
margin-bottom: 10px;
}
#menu p.extra-menu-links {
transition-duration: .2s;
margin-bottom: 5px;
margin-left: 40px;
font-size: 0.7500em;
color: #aaa;
}
#menu p.extra-menu-links a{
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 20px;
}

#menu p.copyr {
transition-duration: .2s;
margin-bottom: 2em;
padding-left: 40px;
font-size: 10px;
color: #aaa;
top: auto;
text-align: inherit;
}

#menu .lang {
transition-duration: .2s;
padding-top: 25px;
padding-left: 40px;
transition: color .6s;
}
#menu .lang li,
#header .lang li {
margin-bottom: 10px;
}
#menu .lang a,
#header .lang a {
font-size: 0.9375rem;
color: #909194;
text-decoration: none;
display: inline-block;
/*background: #464645b8;
line-height: 2.1rem;
width: 1.9rem;
text-align: center;
border-radius: 50%;
height: 1.9rem;*/
}
#menu .lang a.active{
color: #454545;
}
#menu .lang.hasbg a{
color: #dfdfdf;
}
#menu .lang.hasbg a.active{
color: #ffffff;
}
#header .lang {
position: absolute;
top: 60px;
right: 32px;
}
#header .lang a {
color: #ffffff;
}
#header .lang a.active {
color: #ffffff;
font-weight: bold;
}
/* LEFT EXTRAS */
#left-extras {
padding-left: 30px;
margin-top: 30px;
width: 190px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
/*#left-extras img {
    display: block;
}
#left-extras > img:first-child {
    margin-bottom: 30px;
}*/
#left-extras .certs-lnk {
    display: inline-block !important;
    float: left;
    margin: 4px 6px 4px 4px;
    flex: 1 0 40%;
}
#left-extras .certs-lnk:nth-child(2n+1) {
    clear: left;
}
.pushy .certs-lnk {    
    display: inline-block;
    padding: 0;
    margin: 8px 0px 8px 0;
    width: 48%;
}
#left-extras.extras-sticky {
   position: fixed;
   bottom: 35px;
}

/******* RIGHT MENU *******/
#rmenu {
position: absolute;
right: 30px;
z-index: 12;
top: 398px;
backface-visibility: hidden;
opacity: 0;
transition-property: opacity;
transition-duration: .2s;
text-align: center;
}
/*.v2 #rmenu {
right: 0px;
margin-right: -21px;
}*/
#rmenu a{
display: inline-block;
text-align: center;
cursor: pointer;
}
#social {
position: relative;
margin-top: 120px;
}
#social a {
display: block;
margin-bottom: 10px;
outline: none;
}
#backtop {
position: fixed;
right: 48px;
bottom: 35px;
opacity: 0;
cursor: pointer;
transition-property: opacity;
transition-duration: .2s;
}
.soc-divi {
width: 74px;
margin: 1em auto;
border-color: rgba(146, 148, 151, 1);
transition-duration: .2s;
}
.elems-light .soc-divi {
border-color: rgba(255, 255, 255, 0.65);
}

/******* MOBILE MENU *******/
#mob-header { 
position: fixed; 
transform: translateY(-60px); 
z-index: 21; 
top: 0; 
left: 0; 
background-color: rgba(255,255,255,.95); 
width: 100%; 
padding: 8px 25px; 
box-sizing: border-box; 
transition-duration: .5s; 
transition-property: transform; 
transition-delay: .2s; 
box-shadow: 0 8px 8px -5px rgba(0,0,0,0.3);
}
#mobmenu a {
cursor: pointer;
}
.mobexdiv {
padding: 15px 30px;
}
.mobexdiv:first-child {
margin-top: 20px;
}
.mobexdiv:last-child {
padding: 15px 0px 0;
}
.mobmenu-btn {
    border: none;
    background: none;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 0;
margin-bottom: 30px;
outline: none;
cursor: pointer;
}
.mobmenu-btn span{
background-color: #454545;
    border-radius: 3px;
    padding: 1px 5px;
    color: #c8c8c8;
    font-size: 2.5em;
    margin-top: 3px;
}
.mobextras {
    padding: 15px 30px;
}
.mobextras a {
    display: inline-block;
    padding: initial;
    padding-left: 13px;
    margin: 0px 4px 8px 4px;
}
#mobmenu .language_menu {
    padding: 15px 10px;
    background-color: #333;
    text-align: center;
}
#mobmenu .language_menu li {
    display: inline-block;
}
#mobmenu .language_menu li.active a{
    color: #919191;
}
#mobmenu .language_menu a {
   padding: inherit;
   padding-right: 10px;
}

/******* CONTENT *******/
#content .page:first-child {
    margin-bottom: initial;
}
.sec-content {
margin-left: 285px;
font-size: 0.8750em; /*14px*/
line-height: 1.25em;
font-weight: 400;
color: #454545; /*#ffffff*/
}
.sec-content h1,
.sec-content h2.prdtitle { 
font-size: 30px;
font-weight: 400;
margin-bottom: 30px; 
margin-top: 25px;

line-height: 1em;
}
.sec-content h1:first-child,
.sec-content h2.prdtitle:first-child {
margin-top: 5px;
}
.sec-content h1:not(:first-child),
.sec-content h2.prdtitle:not(:first-child) {
padding-top: 35px;
}
.sec-content p + h1,
.sec-content div + h1 {
border-top: 1px #ccc solid;
}
.sec-content li {
list-style-position: inside;
}
.sec-content p {
margin-bottom: .5em;
text-align: justify;
line-height: 1.24em;
}
/******* PAGES *******/
.page, .subpage {
/*padding: 0 6%;*/
padding-right: inherit;
/*min-height: 360px;*/ /*660px*/
transition: color .6s;
}
.page, .subpage {
margin-bottom: 100px;
padding-top: 80px;
overflow: hidden;
}
.subpage .content {
/*height: 100vh;*/
}
.flme, .flme.hasbg {
    color: #444444;
    transition: color 0.1s;
}
.elems-light .flme, .elems-light .flme.hasbg {
    color: #ffffff;
}
.flme.hasbg p {
font-weight: 200;
}
.subpage * {
box-sizing: border-box;
}
.subpage {
position: relative;
padding-left: initial;
/*border: 1px rgba(204, 204, 204, 0.13) solid;*/
}
.subpage:last-child {
    margin-bottom: 0px;
}
.subpage .prodimg {
    position: absolute;
    bottom: 30%; /*-5px*/
    /*right: 0px;*/
    transition: all .150s;
    width: 32vw; /*38vw*/
    max-width: 450px;
   /* text-align: right;*/
}
.subpage .prodimg img{
width: 100%;
height: auto;
}
div[id^=watermelons] .prodimg {
  bottom: 2%;
}
div[id^=grape] .prodimg img {
 max-height: 440px;
 width: auto;
}

.products .page {
padding-top: 0px;
padding: 0;
}
.products h3 {
/*display: inline-block;
border-bottom: 0.1em solid #ffffff;*/
text-decoration: underline;
clear: both;
font-size: 1.2em;
font-weight: 200;
padding-bottom: 2px;
margin-bottom: 17px;
}
.page .content {
padding-right: 26%;
}
.products h1:first-child,
.products h2.prdtitle:first-child {
/*float: left;*/
display: inline-block;
width: 50%;
}
.prdlogo {
/*float: right;*/
display: inline-block;
width: 50%;
vertical-align: sub;
text-align: right;
opacity: 1;
}
.prdlogo img {
transform: translateZ(0);
}
.prdislbl {
    /*position: absolute;*/
    display: inline-block;
    line-height: normal;
    opacity: 0;
    transition: opacity .3s;
    font-size: .53em;
    vertical-align: baseline;
    margin-left: 15px;
    /*margin-top: -1px;*/
    color: #000;
    /*height: 1.5em;*/
    line-height: 1.1em;
    /*max-width: 86px;*/
}
/******* PRODUCT PACKAGING *******/
.packaging {
margin: 30px 0 30px;
}
/*.pack-headers {
vertical-align: top;
display: inline-block;
border-right: 1px #eee solid;
max-width: 33%;
padding-right: 15px;
}
.pack-headers span {
display: block;
margin-bottom: 10px;
font-weight: 700;
}
.pack-item {
vertical-align: top;
display: inline-block;
border-right: 1px #eee solid;
max-width: 33%;
padding-left: 15px;
padding-right: 15px;
}
.pack-item:last-child {
border-right: none;
}
.pack-item span {
display: block;
margin-bottom: 10px;
font-weight: 100;
}
.pack-table th{
text-align: left;
padding: 4px;
}
.pack-row td{
width: 33%;
padding: 4px 8px;
}*/
.packaging p{
width: 100%;
padding-top: 10px;
border-top: 1px rgba(255,255,255, 0.6) solid;
font-weight: 200;
font-size: 0.95em;
margin-bottom: 0px;
}
.packaging p:last-child{
border-top: none;
line-height: 20px;
font-size: 0.95em;
}
.packaging p:last-child strong {
 display: inline-block;
 margin-bottom: 5px;
}
.packaging strong {
font-weight: 700;
}
.packaging ul{
display: block;
margin-top: 3px;
margin-bottom: 20px;
}
.packaging li:after{
content: '•';
margin: 0;
padding: 0;
margin-left: 4px;
}
.packaging li{
display: inline-block;
font-weight: 700;
}
.packaging li:last-child:after{
content: '';
}
/******* PRODUCT GALLERY *******/
.gallery {
margin: 0 0 5px;
min-height: 150px;
}
.gallery img {
width: 100%;
}
.pp_social {
display: none;
}
/** PRODUCT SEASONALITY *******/
.month-cal {
width: 66%;
margin: 20px 0;
}
.month-cal .month {
display: inline-block;
padding: 2px 10px 2px 0px;
vertical-align: top;
text-align: center;
}
.month span {
display: block;
}
.month-name {
font-size: 0.95em;
}
.month-check {
font-size: 1.35em;
font-weight: 100;
color: rgba(255,255,255, 0.6);
}

/******* CONTACT FORM *******/
.contactform {
    margin: 0 auto;
    text-align: center;
}
.cms_form {
    border-top: 1px #999 solid;
    border-bottom: 1px #999 solid;
    margin-top: 30px;
    padding: 20px 0;
}
.cms_form label {
    display: inline-block;
    width: 30%;
    padding: 4px 0px;
    text-align: left;
    font-weight: bold;
}
.cms_form input[type=text],
.cms_form input[type=email]{
    box-sizing: border-box;
    width: 68%;
    max-width: 320px;
    max-height: 20px;
}
.cms_form textarea {
    box-sizing: border-box;
    width: 68%;
    max-width: 320px;
    max-height: 73px;
}
.form-colA {}
.form-colB {}
.form-colB label {
vertical-align: top;
}
.cms_form #actions {
    box-sizing: border-box;
    width: 100%;
    /*max-width: 320px;*/
    max-height: 70px;
    margin: 0 auto;
    text-align: center;
    padding-left: 30%;
}
.rst-btn, .fbsubmit  {
   display: inline-block;
}
.rst-btn input,
.fbsubmit {
    background: none;
    border: none;
    margin-top: 20px;
    font-size: 1em;
    font-family: inherit;
    cursor: pointer;
}
.prv-agree {
    display: none;
}
.v2 .prv-agree {
    display: block;
    margin-top: 20px;
    box-sizing: border-box;
    max-height: 20px;
    font-size: 0.75em;
}
.v2 .prv-agree .label_spacer {
   display: inline-block;
   width: 30%;
   padding: 0 0px 0 4px;
}
.v2 .prv-agree > div {
    box-sizing: border-box;
    width: 67%;
    max-width: 320px;
    max-height: 20px;
    display: inline-block;
    text-align: left;
}
.v2 .prv-agree a {
    display: inline-block;
    margin-right: 1vw;
}
.v2 .prv-agree label {
    vertical-align: middle;
}

.frm-proc {
    background-image: url('/images/ajax-loader.gif');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.gmap {
    margin: 0 auto;
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
    padding-bottom: 35%; // This is the aspect ratio
    height: 0;
    overflow: hidden;
}

.gmap iframe {
    /*position: absolute;*/
    top: 0;
    left: 0;
    max-width: 815px;
    max-height: 460px;
    width: 100% !important;
    /*height: 100% !important;*/
}

/******* SEASONALITY *******/
.smonth-cal {
width: 100%;
margin: 20px 0;
table-layout: fixed;
}
.smonth-cal .months {
border-top: 1px #909090 solid;
border-bottom: 1px #909090 solid;
text-align: right;
font-size: 1.1em;
font-weight: bold;
/*padding: 20px 5px;*/
}
.smonth-cal .months .month {
padding: 20px 5px;
}
.smonth-cal .prd-row {
/*margin: 10px 0;*/
border-bottom: 1px #909090 solid;
}
.smonth-cal .month {
/*display: inline-block;
padding: 2px 20px 2px 0px;*/
box-sizing: border-box;
vertical-align: center;
text-align: center;
width: 3%;
}
.smonth-cal .month-0 {
width: 10%;
}
.prd-row .month {
/*border-left: 1px #333 solid;*/
line-height: 75px;
vertical-align: middle;
text-align: center;
}
.prd-row .month-0 {
border-left: none;
font-weight: bold;
}
.prd-row .month-check {
height: 60px;
line-height: 60px;
border-left: 1px #c7c7c7 solid;
}
.smonth-cal .month:last-child {
 padding-right: 0px;
}
.smonth-cal .month span {
display: block;
}
.smonth-cal.month-name {
font-size: 0.95em;
}
.smonth-cal .month-check {
font-size: 1.35em;
font-weight: 100;
}
.smonth-cal img{
max-width: 48px;
width: 90%;
height: auto;
vertical-align: middle;
}

/******* FOOTER *******/
#footer {
 margin-top: 1em;
}
p.copyr {
position: relative;
top: -3.9em;
transition-duration: .2s;
font-weight: bold;
font-size: 11px;
color: #333333;
text-align: center;
}
/******* MODAL *******/
.ssn_modal {
position: fixed;
top: 0;
left: 0;
opacity: 0;
z-index: 11;
width: 100%;
height:100%;
background: #fff;
transition-property: opacity;
transition-duration: .9s;
}

/******* CAPTCHA *******/
#captchadiv { 
  padding: 4px 0px; 
  padding-left: 30%;
  width: 68%;
}
#captchadiv label { 
  width: auto; 
  text-align: left;
}
#captchadiv label img { 
  width: 110px;
  height: auto;
}
#captchadiv input[type=text] {
  width: 80px;
  height: 40px;
  max-height: none;
  margin: 4px 0px;
  display: inline-block;
  font-size: 18px;
  letter-spacing: 2px;
}
/******* NOTIFICATION *******/
.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#FFF}.toast-message a:hover{color:#CCC;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#FFF;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#FFF;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51A351}.toast-error{background-color:#BD362F}.toast-info{background-color:#2F96B4}.toast-warning{background-color:#F89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}}

.toast.toast-success,
.toast.toast-error {
  width: 100% !important;
  border-radius: 0 0 3px 3px !important;
  opacity: 0.97 !important;
}

/******* MODAL *******/
.popup_content {
    min-width: 20%;
    min-height: 5%;
    width: 90vw;
    max-width: 1220px;
    height: 90vh;
    max-height: 900px;
    margin: 1%;
    background: white;
    color: #414242;
    overflow: hidden;
}
.popup_content p {
    line-height: 1.3em;
    font-size: 0.9em;
    font-weight: 400;
    margin: 1em auto;
}
.popup_content a {
    color: #000;
    transition-duration: .2s;
    text-decoration: none;
    border-bottom: 1px solid #333;
}
.popup_content a:hover {
    border-bottom: 1px solid #fff;
}
.popup_content ul {
    list-style-position: inside;
    margin-left: 1em;
}
.popup_content ul li {
    line-height: 1.3em;
}
.popup_content .popup_close {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 2px;
    background: none;
    border: 0;
    font-size: 45px;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 100;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transform: scale(1.1, 0.75);
    outline: none;
   cursor: pointer;
}
.popup_content > div {
    padding: 0px 65px;
    font-family: 'Comfortaa', sans-serif;
    overflow: auto;
    height: calc(100% - 110px);
    margin: 55px auto;
}
.popup_content h1 {
    font-size: 1.875em;
    margin-bottom: 20px;
}
.popup_content h2 {
    font-size: 1.5000em;
    margin-bottom: 10px;
    margin-top: 20px;
}
/******* 404 PAGE NOT FOUND *******/
.err-content {
margin: 100px auto;
width: 70%;
}
/* cmsms stylesheet: main media queries modified: 02/25/21 13:45:26 */
@media screen and (max-height: 780px) {
  #header, #slider1w{
    max-height: 100vh;
  }
}
@media screen and (max-height: 700px) {
  .certs-lnk img {
    width: 54px;
    height: auto;
  }
}
@media screen and (max-height: 600px) {
  #social {
    margin-top: 80px;
    transition-duration: .2;
  }
}

@media screen and (orientation:landscape) and (max-height: 670px) {
  .certs-lnk img {
    width: 50px;
    height: auto;
  }
  #left-extras .certs-lnk:nth-child(2n+1) {
    clear: initial;
  }
  #left-extras .certs-lnk:nth-child(3n+1) {
    clear: left;
  }
}

@media screen and (max-width: 831px) {
  #mob-header {
    transform: translateY(0px) !important;
  }
  .form-colA.pr2 { padding: 0; }
  .form-colB.pl2 { padding: 0; margin-top: 4px; }
  #actions { max-width: auto; }
  #header .lang { display: none; }

.popup_content > div {
    padding: 0px 35px;
    margin: 55px auto 5px;
    height: calc(100% - 85px);
}

#accessibilitytoolbarGraphic {
    top: 60px !important;
}
#cdu_close button{
    font-size: 0.75em !important;
}
.uci_right {
    float: none !important;
}
.uci_contenu_onglet.cdu_c {
   flex-wrap: wrap;
   overflow-y: auto;
}
#uci_contenu_onglet_apparence .uci_onglet_div {
   max-width: 100% !important;
}
}

@media screen and (max-width: 480px) {
 #slider1w {
   margin-top: 58px;
   margin-bottom: 30px;
 }
 #content .page:first-child {
    padding-top: initial;
    margin-bottom: initial;
 }
 #content .subpage.flme {
    padding-top: initial;
 }
 #content, .sec-content  {
    margin-left: 20px;
 }
 .page {
    padding-right: 0;
 }
 .content, .sec-content {
    padding-right: 6% !important;
 }
 .sec-content {
   padding-right: 2%;
 }
 #backtop {
   right: 5px;
 }
 #backtop img {
   width: 20px;
   height: auto; 
 }
 .products h1:first-child {
    width: 100%;
 }
 .prdlogo {
    display: block;
    text-align: left;
    margin-bottom: 20px;
 }
 .prdlogo img {
    height: 26px;
 }
 .gallery img {
   max-width: none;
   width: 100%;
 }
}

@media screen and (min-width: 481px) and (max-width: 832px) {
 #content, .sec-content {
    margin-left: 40px;
 }
 .content{
    padding-right: 16% !important;
 }
 .sec-content {
   padding-right: 3%;
 }
}

@media screen and (min-width: 833px) and (max-width: 980px) {
 #menu {
   transition-duration: .2s;
   width: 170px !important;
 }
 #menu .main > ul,
 #menu p.extra-menu-links {
    margin-left: 12px;
 }
 #menu p.copyr {
    padding-left: 12px;
 }
 #menu .lang {
    padding-left: 30px;
 }
 #left-extras {
    padding-left: 10px;
 }
 #content {
    margin-left: 195px;
 }
 .smonth-cal .month-name {
    font-size: 0.8em;
 }
}

@media screen and (min-width: 981px) and (max-width: 1024px) {
 .smonth-cal .month-name {
    font-size: 0.85em;
 }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  table.pack-table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  }
  table.pack-table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table.pack-table tr {
    /*background: rgba(0,0,0, 0.1);*/
    border-bottom: 3px dashed #ddd;
    display: block;
    margin-bottom: .825em;
  }
  table.pack-table td {
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right;
    width: auto;
  }
  table.pack-table td:before {
    content: attr(data-label);
    float: left;
  }
  table.pack-table td:last-child {
    border-bottom: 0;
  }
  .smonth-cal .month-name {
    font-size: 0.85em;
 }
}

@media screen and (max-width: 1023px) {
.subpage .prodimg {
 opacity: 0 !important;
}
.prdseason .month:not(.checked){
    display: none;
 }
.prdislbl { display: block; margin-left: auto; }
}

@media screen and (min-width: 481px) and (max-width: 1279px) {
.gallery img {
 max-width: 180px;
}
}

@media screen and (min-width: 831px) and (max-width: 1400px) {
  /*#actions {
    padding-left: 0 !important;
  }*/
}

@media screen and (max-width: 1600px) {
.subpage .prodimg {
 right: -155px;
}
}

@media screen and (min-width: 1601px) {
  .subpage .prodimg {
  right: 0px;
}
}
@media screen and (min-width: 831px) {
  #mob-header {
  top: -60px;
  transition-duration: .3s;
}
  #mobmenu {
  left: -220px;
  transition-duration: .3s;
}
}
@media screen and (max-width: 1920px) {
.packaging p {
 max-width: 580px;
}
}
/* cmsms stylesheet: slick modified: 03/24/17 19:33:29 */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* cmsms stylesheet: slick-theme modified: 03/24/17 19:43:27 */
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../../js/slick/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../../js/slick/fonts/slick.eot');
    src: url('../../js/slick/fonts/slick.eot?#iefix') format('embedded-opentype'), url('../../js/slick/fonts/slick.woff') format('woff'), url('../../js/slick/fonts/slick.ttf') format('truetype'), url('../../js/slick/fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    /*position: absolute;*/
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '';
    text-align: center;

    background-color: #cccccc;
    border-radius: 10px;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* responsive part */
.slick-slide > .slick-slider-img{
    margin: 10px;
    padding: 2%;
    position: relative;
    border: 5px solid #FFF;
    display: block;
    width: 100%;
}
.slick-slide .image {
padding: 10px;
/*height: 180px;*/
}

.slick-slide img {
display: block;
width: 100%;
}
