@charset "UTF-8";
@font-face {
  font-family: "BalooBhai2";
  src: local("BalooBhai2 Regular"), local("BalooBhai2-Regular"), url("fonts/BalooBhai2-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "BalooBhai2";
  font-style: italic;
  src: local("BalooBhai2 Bold"), local("BalooBhai2-Bold"), url("fonts/BalooBhai2-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("fonts/Montserrat-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  src: local("Montserrat Italic"), local("Montserrat-Italic"), url("fonts/Montserrat-Italic.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: bold;
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("fonts/Montserrat-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: bold;
  font-style: italic;
  src: local("Montserrat -BoldItalic"), local("Montserrat-BoldItalic"), url("fonts/Montserrat-BoldItalic.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 900;
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"), url("fonts/Montserrat-ExtraBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("fonts/Montserrat-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("fonts/Montserrat-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: italic;
  src: local("Montserrat MediumItalic"), local("Montserrat-MediumItalic"), url("fonts/Montserrat-MediumItalic.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 300;
  src: local("Montserrat Light"), local("Montserrat-Light"), url("fonts/Montserrat-Light.ttf");
  font-display: swap;
}
/*ver->2.0std-02-08-2019*/
/*ver->2.0std-02-08-2019*/
/* ================= FORMULARZE ================ */
label {
  color: lighten #0D0D0D, 10%;
  font-size: 16px;
  text-transform: none;
  margin-top: 10px;
}

span + label {
  margin-top: 0;
}

input, select, textarea, .input-placeholder {
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
  height: 50px;
  line-height: 1;
}

.submit-controls {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.submit-controls > div {
  width: auto;
  margin-right: 20px;
}

.submit-controls > div:last-child {
  margin-right: 0;
}

.submit-area {
  display: block;
  text-align: right;
}

.submit-area .button {
  margin: 0;
}

.input-wrapper {
  padding: 0 0 10px 0;
  width: 100%;
  position: relative;
}

.form-fields-wrapper {
  margin-right: -10px;
  width: 100%;
}

.columns .form-fields-wrapper {
  width: auto;
}

/* ================= formularze nowe ================ */
/* ---- placeholdery pól ---- */
input ::-webkit-input-placeholder, textarea ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #333;
  opacity: 0.4;
}
input ::-moz-placeholder, textarea ::-moz-placeholder { /* Firefox 19+ */
  color: #333;
  opacity: 0.4;
}
input :-ms-input-placeholder, textarea :-ms-input-placeholder { /* IE 10+ */
  color: #333;
  opacity: 0.4;
}
input :-moz-placeholder, textarea :-moz-placeholder { /* Firefox 18- */
  color: #333;
  opacity: 0.4;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} /* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-number {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 150px;
  max-width: 150px;
}

.input-number input {
  width: 50px;
  text-align: center;
}

.input-number > span {
  height: 50px;
  width: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  transition: all 300ms;
}

.input-number > span.down {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.input-number > span.up {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.input-number > span.up:after, .input-number > span.down:after {
  line-height: 1;
}

.input-number > span.up:after {
  content: url("graphics/commerce/plus.png");
}

.input-number > span.down:after {
  content: url("graphics/commerce/minus.png");
}

.input-number > span.down:hover, .input-number > span.up:hover {
  background: #eee;
}

.select-placeholder {
  color: #999999;
}

/* ----- select ----- */
.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  height: 50px;
  margin: 0;
  width: 100%;
}

.styledSelect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 0px 40px 0 10px;
  font-weight: normal;
  border: 1px solid #ddd;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.styledSelect:after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: black transparent transparent transparent;
  position: absolute;
  top: 23px;
  right: 10px;
}

.styledSelect:active, .styledSelect.active {
  background-color: #efefef;
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border: 1px solid #ddd;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
  padding: 0 6px;
  margin: 0 0;
  padding: 0 10px;
}

/* -- SELECT HOVER -- */
.options li:hover {
  background-color: #000;
  color: #fff;
}

/* --- input type=radio, input type=checkbox --- */
input[type=checkbox] + label, input[type=radio] + label {
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
}

input[type=checkbox] + label::before {
  content: " ";
  display: inline-block;
  vertical-align: 0.2em;
  width: 22px;
  max-width: 22px;
  min-width: 22px;
  height: 22px;
  margin-right: 10px;
  margin-top: 2px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=checkbox]:checked + label::before {
  content: "✓";
  background: #000;
}

input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=radio] + label::before {
  content: " ";
  display: inline-block;
  vertical-align: 0.2em;
  width: 22px;
  height: 22px;
  max-width: 22px;
  min-width: 22px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100%;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=radio]:checked + label::before {
  content: "✓";
  background: #000;
}

input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.checklist.rodo label {
  font-size: 0.7rem;
}

.checklist.wrapper {
  display: block;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 10px 10px;
}

.checklist.wrapper > label {
  margin-bottom: 10px;
}

.checklist.wrapper > label:last-child {
  margin-bottom: 0;
}

/* === DISABLED === */
input[type=checkbox][disabled] + label {
  opacity: 0.8;
}

input[type=checkbox][disabled] + label:before {
  background-color: #f0f0f0;
  opacity: 0.8;
}

input[type=radio][disabled] + label {
  opacity: 0.8;
}

input[type=radio][disabled] + label:before {
  background-color: #f0f0f0;
  opacity: 0.8;
}

input[disabled=disabled] {
  background-color: #f0f0f0;
}

/* === swith toggle === */
.onoffswitch {
  position: relative;
  width: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  position: absolute;
  opacity: 0;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #0D0D0D;
  border-radius: 20px;
  display: block !important;
}

.onoffswitch-checkbox[disabled=""] + .onoffswitch-label {
  opacity: 0.6;
  pointer-events: none;
}

.onoffswitch-label:before {
  display: none !important;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: BalooBhai2, tahoma, arial, sans-serif;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "ON";
  padding-left: 10px;
  background-color: #04AA6D;
  color: #FFFFFF;
}

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #eee;
  color: #0D0D0D;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 1px solid #0D0D0D;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}

/* =============== zestawy pól ============== */
.input-combo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.input-combo > div {
  flex: 1;
  margin-right: 10px;
}

.input-combo > div:last-child {
  margin-right: 0;
}

.input-combo > div.post-code {
  flex: 0.5;
}

/* ================ Klasy specjalne ============= */
.question-label {
  display: block;
  margin-top: 20px;
}

span + .question-label {
  margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5em 0 0.8em 0;
  line-height: 1.2;
  letter-spacing: 1px;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
  font-weight: bold;
}

#START h1, #START .banner-content h1, #START .banner-content h2 {
  font-size: 4.8em;
  text-align: left;
}

#START h2 {
  font-size: 2.25rem;
}

a {
  color: #22CC8D;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.ps-image:after,
.opSlider-inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

#logo {
  left: 70px;
  width: 520px;
  height: 120px;
}

#TOP {
  border-bottom: none;
}

#TOP .search-wrapper {
  margin-left: 0;
}

#TOP.unsticked:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #22CC8D, #1E9FCC);
}

.button {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: normal;
  border: none;
  border-radius: 2px;
}

:hover.button {
  background: rgb(26.7142857143, 160.2857142857, 110.7857142857);
}

.button.alt {
  color: #777;
  border: solid 1px #777;
  background: transparent;
}

.button.txt {
  height: 2em;
  padding: 0;
  background: none;
  color: #333;
  min-width: 0;
  padding-right: 35px;
}

.button.txt:after {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  width: 18px;
  background-image: url("graphics/svg/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: right 300ms;
}

.button.txt:hover:after {
  right: 0;
}

.button.file-btn {
  padding-right: 75px;
}

.button.file-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  box-sizing: border-box;
  background-image: url("graphics/download.png");
  background-color: #1a1a1a;
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center;
  background-origin: content-box;
}

.button.ico-btn {
  padding-right: 75px;
}

.button.ico-btn .ico {
  background: rgb(26.7142857143, 160.2857142857, 110.7857142857);
  position: absolute;
  top: -1px;
  right: -1px;
  width: 50px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-sizing: border-box;
  transition: all 300ms;
}

.button.ico-btn:hover .ico {
  background: #22CC8D;
}

.button.ico-left, .button.ico-right, .button.ico-left:hover, .button.ico-right:hover {
  background: #333;
  border: 0;
  color: #fff;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.button.ico-left {
  padding-left: 50px;
}

.button.ico-right {
  padding-right: 50px;
}

.button.ico-left .ico, .button.ico-right .ico {
  position: absolute;
  top: 0;
  padding: 15px;
  box-sizing: border-box;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}

.button.ico-left .ico {
  left: 0;
}

.button.ico-right .ico {
  right: 0;
}

.button.alt.ico-left, .button.alt.ico-right, .button.alt.ico-left:hover, .button.alt.ico-right:hover {
  background: transparent;
  border: solid 1px #777;
  color: #777;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.button.alt {
  color: #777;
  border: solid 1px #777;
  background: transparent;
}

.button.txt {
  padding: 0;
  background: none;
  color: #0D0D0D;
  min-width: 0;
  padding-right: 35px;
  font-weight: 300;
  font-size: 1rem;
}

.button.txt:after {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  width: 18px;
  background-image: url("graphics/svg/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: right 300ms;
}

.button.txt:hover:after {
  right: 0;
}

.button.cta {
  height: 50px;
  background: #22CC8D;
}

.button.alt.cta {
  background: #1E9FCC;
  border: 1px solid #1E9FCC;
  color: #fff;
}

.button.file-btn {
  padding-right: 75px;
}

.button.file-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  box-sizing: border-box;
  background-image: url("graphics/download.png");
  background-color: rgb(26.7142857143, 160.2857142857, 110.7857142857);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center;
  background-origin: content-box;
}

.button.ico-left, .button.ico-right, .button.ico-left:hover, .button.ico-right:hover {
  background: #22CC8D;
  border: 0;
  color: #fff;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.button.ico-left {
  padding-left: 50px;
}

.button.ico-right {
  padding-right: 50px;
}

.button.ico-left .ico, .button.ico-right .ico {
  position: absolute;
  top: 0;
  padding: 15px;
  box-sizing: border-box;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}

.button.ico-left .ico {
  left: 0;
}

.button.ico-right .ico {
  right: 0;
}

.button.alt.ico-left, .button.alt.ico-right, .button.alt.ico-left:hover, .button.alt.ico-right:hover {
  background: transparent;
  border: solid 1px #777;
  color: #777;
  box-shadow: none;
  text-shadow: none;
  transition: all 300ms;
}

.button.disabled {
  background-color: #ddd !important;
  opacity: 0.5;
  filter: grayscale(100%);
  pointer-events: none;
}

.container, .container.alt {
  padding: 0 70px;
}

.updated {
  font-size: 0.9rem;
  font-weight: bold;
  color: #22CC8D;
}

.social-sharing-module {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.social-sharing-module > span.sharing-title {
  margin: 0;
  margin-right: 1.8em;
  font-size: 1.1em;
}

#copy_link_sharing {
  position: relative;
}

#copy_link_sharing:after {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #519c46;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms;
  transform: scale(0);
}

#copy_link_sharing.link-copied:after {
  transform: scale(1);
}

.links ul li {
  list-style: none;
  margin-left: 0;
}

.links ul li a {
  text-decoration: none;
  transition: all 300ms;
}

.video-wrapper .mp4-video video {
  display: block;
  max-width: 100%;
}

.footer {
  text-align: center;
}

.header.with-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
  flex-wrap: wrap;
}

.header.with-button .button {
  margin: 0;
  margin-bottom: 10px;
}

.header.with-button h2 {
  margin-bottom: 10px;
  margin-right: 30px;
}

.logo-box .thb {
  filter: grayscale(100%);
  transition: filter 600ms;
}

.logo-box:hover .thb {
  filter: grayscale(0);
}

.icon-card-lux-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-bottom: 50px;
}

.icon-card-lux-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
}

.icon-card-lux-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.icon-card-lux-section .container {
  position: relative;
  z-index: 1;
}

.icon-card-lux-section .icon-card .content {
  color: #fff;
}

.icon-card-lux-section .icon-card h3 {
  color: #22CC8D;
}

.icon-card-lux-section .icon-card .icon-wrapper {
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(90deg, #22CC8D, #1E9FCC);
  width: 120px;
  height: 120px;
  margin: 0 auto 1em auto;
}

.icon-card-lux-section .icon-card .icon-wrapper .icon {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.icon-card-lux-section .icon-card .icon-wrapper .icon img {
  width: 50%;
  height: 50%;
}

.background-icon-box-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(90deg, #22CC8D, #1E9FCC);
  opacity: 0.6;
}

.benefit-card-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 50px;
}

.benefit-card-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10%;
  background-image: linear-gradient(0deg, transparent, #fff);
}

.benefit-card-section .container {
  max-width: 1000px;
}

.benefit-card-section .columns.x2 > div:nth-child(odd) .benefit-card {
  padding-right: 50%;
  position: relative;
}

.benefit-card-section .columns.x2 > div:nth-child(even) .benefit-card {
  padding-left: 50%;
  position: relative;
}

.benefit-card-section .columns.x2 > div:nth-child(1) .benefit-card,
.benefit-card-section .columns.x2 > div:nth-child(5) .benefit-card {
  right: -100px;
}

.benefit-card-section .columns.x2 > div:nth-child(2) .benefit-card,
.benefit-card-section .columns.x2 > div:nth-child(6) .benefit-card {
  left: -100px;
}

.benefit-card-section .benefit-card .content h3 {
  color: #0D0D0D;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 0;
}

.background-icon-box-wrapper {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

a.icon-card.bg-icon-box {
  display: block;
  color: #fff;
  text-decoration: none;
}

.icon-card.bg-icon-box h3, #START .icon-card.bg-icon-box h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.icon-card.bg-icon-box {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 25px;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  transition: all 300ms;
  box-sizing: border-box;
}

a.icon-card.bg-icon-box:hover {
  background: rgba(30, 159, 204, 0.8);
}

.icon-card.bg-icon-box .icon {
  width: 100px;
  height: 100px;
}

.icon-card.bg-icon-box .content {
  position: absolute;
  bottom: 20px;
  left: 25px;
  right: 25px;
  padding: 0;
}

#START .icon-card.bg-icon-box .content h3, .icon-card.bg-icon-box .content h3 {
  font-size: 1.1rem;
}

.quote-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 90px 0;
}

.quote-section .container {
  position: relative;
  z-index: 1;
}

.quote-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.quote-section h2, .quote-section blockquote, .quote-section p, .quote-section span, .quote-section a {
  color: #fff;
}

.quote-section h2 {
  text-align: center;
}

.quote-section .header {
  padding-bottom: 0;
}

.quote-section blockquote, .quote-section span.signature {
  text-align: center;
  display: block;
}

blockquote span.signature {
  text-transform: uppercase;
}

.quote-section .slick-next, .quote-section .slick-prev {
  display: none !important;
}

nav.desktop .nav-button > a {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: bold;
}

nav.desktop .nav-button > a span {
  position: relative;
}

nav.desktop .nav-button > a span {
  transition: all 300ms;
}

nav.desktop ul li:hover .submenu {
  border-top: 1px solid #cccccc;
}

nav.desktop ul li:hover .submenu:after {
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #cccccc;
  top: -10px;
  left: 15px;
}

nav.desktop .submenu {
  z-index: 15;
}

nav.desktop .nav-button > a:hover span,
nav.desktop .nav-button.urhere > a span {
  color: #22CC8D;
}

nav.desktop .nav-button > a {
  padding: 0 15px;
}

nav.desktop .nav-button > a.label-link {
  position: relative;
  padding-left: 40px;
  color: #1e9fcc;
}

nav.desktop .nav-button > a.label-link > span {
  letter-spacing: 1px;
}

nav.desktop .nav-button > a.label-link:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url("graphics/sygnet.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#TOP-EXTENDED .header-modules {
  align-items: flex-start;
  margin-top: 50px;
}

#TOP-EXTENDED .links ul {
  display: flex;
  margin: 7px 0 0 0;
}

#TOP-EXTENDED .links ul li {
  margin-right: 80px;
}

#TOP-EXTENDED .links ul li a {
  color: #707070;
  font-size: 1rem;
}

.header-modules {
  float: right;
  height: 100%;
}

#TOP-MAIN .header-modules {
  padding-left: 30px;
  margin-left: 0;
  position: relative;
}

.header-modules .simple-search-wrapper {
  position: relative;
  margin-left: 0;
  padding-right: 50px;
  overflow: hidden;
  height: 50px;
}

.header-modules .simple-search-wrapper input {
  height: 50px;
  border: 1px solid #aaa;
  border-radius: 5px;
  min-width: 270px;
}

.simple-search-wrapper .button.search-button {
  position: absolute;
  top: 0;
  right: 50px;
  min-width: 0;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 12px;
  background: transparent;
  border-radius: 0 5px 5px 0;
}

.simple-search-wrapper .button.search-button img {
  max-width: 100%;
  max-height: 100%;
  filter: none;
}

.header-modules .button {
  margin: 0;
  min-width: 220px;
}

.header-modules .phone-wrapper {
  margin-left: 30px;
}

#TOP .social-icon {
  width: 30px;
  height: 30px;
  margin-right: 25px;
}

.phone-wrapper .button .ico {
  padding: 10px;
}

.opSlider-item.bg-image {
  background-position: center right;
}

.opSlider-control-prev, .opSlider-control-next {
  display: none;
}

.banner-content {
  padding-bottom: 20vh;
}

.banner-content h1,
.banner-content h2,
.banner-content .text-wrapper,
.banner-content .controls {
  text-align: left;
}

#START .banner-content h1,
#START .banner-content h2,
.banner-content h1,
.banner-content h2 {
  font-weight: bold;
}

.banner-content .text-wrapper {
  max-width: 500px;
}

.article-section.padding-top h2:first-child {
  margin-top: 0;
}

.blog-banner-section {
  margin-top: 0;
}

.blog_entry_wrapper {
  display: flex;
  margin: 0 -20px;
}

.blog_entry_wrapper > div {
  margin: 0 20px;
  box-sizing: border-box;
}

.blog_entry_wrapper > .first_blog_entry {
  position: relative;
  width: 45%;
  border-top: 5px solid #1E9FCC;
  border-right: 5px solid #1E9FCC;
  border-radius: 0 20px 0 0;
  padding: 45px 45px 0 0;
}

.blog_entry_wrapper > .first_blog_entry:after {
  content: "";
  position: absolute;
  top: -5px;
  left: -200px;
  right: 100%;
  height: 5px;
  background-color: #1E9FCC;
}

.blog_entry_wrapper > .blog_entry {
  position: relative;
  border-top: 5px solid transparent;
  width: 55%;
  padding: 45px 0 0 0;
}

.blog_entry_wrapper > .blog_entry:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: -200px;
  height: 5px;
  background: linear-gradient(to right, #22CC8D, #1E9FCC);
}

.blog_entry .columns {
  margin: 0 -20px 0 -20px;
}

.blog_entry .columns > div {
  padding: 0 20px 40px 20px;
}

.promo-info-box {
  background: linear-gradient(to right, #1E9FCC, #22CC8D);
  padding: 40px 40px 110px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  position: relative;
  display: block;
  box-sizing: border-box;
  min-height: 265px;
}

.promo-info-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 50%;
  max-width: 300px;
  background-image: url("graphics/sygnet.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 0.2;
}

a.promo-info-box {
  text-decoration: none;
}

#START .promo-info-box h3, .promo-info-box h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.promo-info-box h3, .promo-info-box p {
  color: #fff;
  margin-top: 0;
}

.promo-info-box .content {
  z-index: 2;
  position: relative;
}

.promo-info-box .controls {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: left;
  padding: 0 40px 30px 40px;
  z-index: 2;
}

.promo-info-box .controls .button.alt {
  border-color: #fff;
  color: #fff;
}

/* ----------------- blog-card -------------------- */
.card {
  margin: 0;
  padding: 0;
  min-height: 10em;
  position: relative;
  display: block;
  vertical-align: top;
}

.card .image-wrapper,
.card .image {
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  border-radius: 20px;
  position: relative;
}

.card .image-wrapper .video-marker {
  position: absolute;
  background-color: white;
  height: 80px;
  width: 80px;
  border-radius: 0 20px 0 0;
  bottom: 0;
}

.card .image-wrapper {
  margin-bottom: 15px;
}

.card .image img {
  width: 100%;
}

.card .image-wrapper .img-placeholder,
.card .image .img-placeholder {
  padding-bottom: 70%;
}

.card .content {
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 0 0 20px 0;
  transition: all 300ms linear;
  min-height: 6.4em;
}

.card h2,
.card h3 {
  font-family: Montserrat, tahoma, arial, sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  margin: 0 0 0.5em 0;
  color: #0D0D0D;
}

.card:hover h2,
.card:hover h3 {
  color: #1E9FCC;
}

/* ----------------- blog-card -------------------- */
.blog-card {
  margin: 0;
  padding: 0;
  min-height: 10em;
  position: relative;
  display: block;
  vertical-align: top;
}

.blog-card .image-wrapper,
.blog-card .image {
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  border-radius: 20px;
  position: relative;
}

.blog-card .image-wrapper .video-marker {
  position: absolute;
  background-color: white;
  height: 80px;
  width: 80px;
  border-radius: 0 20px 0 0;
  bottom: 0;
}

.blog-card .image-wrapper {
  margin-bottom: 30px;
}

.blog-card .image img {
  width: 100%;
}

.blog-card .image-wrapper .img-placeholder, .blog-card .image .img-placeholder {
  padding-bottom: 70%;
}

#page-products_listing .blog-card .image-wrapper .img-placeholder,
#page-products_listing .blog-card .image .img-placeholder {
  padding-bottom: 100%;
}

#page-products_listing .blog-card .image-wrapper .branch-icon {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  border-radius: 17px;
  background: rgba(30, 159, 204, 0.7);
  border: 2px solid transparent;
  transition: all 500ms;
  z-index: 2;
}

#page-products_listing .blog-card .image-wrapper:after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  width: 0;
  height: 0;
  background: rgba(30, 159, 204, 0);
  border-radius: 17px;
  transition: all 500ms;
}

#page-products_listing .blog-card .image-wrapper img {
  transition: all 500ms;
  display: block;
}

#page-products_listing .blog-card:hover .image-wrapper:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 159, 204, 0.7);
}

#page-products_listing .blog-card:hover .image-wrapper .branch-icon {
  width: 150px;
  height: 150px;
  border: 2px solid #fff;
  background-color: transparent;
}

#page-products_listing .blog-card:hover .image-wrapper > img {
  filter: blur(2px);
}

.blog-card .content {
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 0 0 20px 0;
  transition: all 300ms linear;
  min-height: 6.4em;
  padding-bottom: 60px;
  padding-right: 20px;
}

.blog-card .content .top-content {
  display: flex;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 10px 0;
}

.blog-card .content .top-content .category {
  text-transform: uppercase;
  color: #1E9FCC;
  margin-right: 20px;
}

.blog-card .content .top-content .entry-date {
  color: #AAAAAA;
  padding-left: 10px;
  border-left: 2px solid #1E9FCC;
  font-weight: 400;
}

.blog-card .content .controls {
  position: absolute;
  bottom: 0;
  left: 0;
}

.blog-card h2,
.blog-card h3 {
  font-family: Montserrat, tahoma, arial, sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  margin: 0 0 0.5em 0;
  color: #0D0D0D;
}

#page-products_listing .blog-card h3 {
  font-size: 1.3rem;
}

.blog-card .updated {
  font-size: 0.9em;
  display: block;
}

.blog-card:hover .content {
  border-right: 2px solid #1E9FCC;
  border-bottom: 2px solid #1E9FCC;
}

.first_blog_entry .blog-card .content .top-content {
  font-size: 1.25rem;
}

.first_blog_entry .blog-card h2,
.first_blog_entry .blog-card h3 {
  font-size: 1.5rem;
}

/* ----------------- blog-tile -------------------- */
.blog-tile {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
}

.blog-tile .image-wrapper,
.blog-tile .image {
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  border-radius: 20px;
  position: relative;
  width: 220px;
}

.blog-tile .image-wrapper .video-marker {
  position: absolute;
  background-color: white;
  height: 40px;
  width: 40px;
  border-radius: 0 20px 0 0;
  bottom: 0;
}

.blog-tile .image-wrapper {
  margin-bottom: 0;
  flex: 1;
}

.blog-tile .image img {
  width: 100%;
}

.blog-tile .image-wrapper .img-placeholder, .blog-tile .image .img-placeholder {
  padding-bottom: 70%;
}

.blog-tile .content {
  margin-left: 40px;
  flex: 1;
  display: flex;
  align-items: center;
}

.blog-tile h2,
.blog-tile h3 {
  font-family: Montserrat, tahoma, arial, sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  margin: 0;
  color: #0D0D0D;
  transition: color 300ms linear;
}

.blog-tile:hover h2,
.blog-tile:hover h3 {
  color: #1E9FCC;
}

/* ----------------- tile -------------------- */
.tile .image-wrapper,
.tile .image {
  border-radius: 20px;
  overflow: hidden;
}

.tile .image-wrapper {
  margin-bottom: 0;
}

.tile h2,
.tile h3 {
  font-family: Montserrat, tahoma, arial, sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: #1E9FCC;
  transition: color 300ms linear;
}

/* ----------------- icon-card -------------------- */
.icon-card h2,
.icon-card h3 {
  font-family: Montserrat, tahoma, arial, sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: #1E9FCC;
  transition: color 300ms linear;
}

/* ------------------------------------- */
.header.special {
  padding-bottom: 50px;
  max-width: initial;
  margin: initial;
}

.header.special .special-title {
  position: relative;
  max-width: initial;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-left: 40px;
}

.header.special .special-title h2, #START .header.special .special-title h2 {
  margin: 0;
  font-weight: bold;
  text-align: left;
}

#START .article-section .header.special .special-title h2 {
  margin: 0;
}

.header.special .special-title .line1 {
  position: absolute;
  height: 5px;
  left: -300px;
  right: 100%;
  bottom: 50%;
  margin-right: 30px;
  background-color: #22CC8D;
}

.header.special .special-title .line2 {
  height: 5px;
  flex: 1;
  margin-left: 40px;
  background: linear-gradient(to right, #22CC8D, #1E9FCC);
}

.header.special .sygnet {
  width: 80px;
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trends-wrapper .article-columns.side {
  padding-right: 590px;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: initial;
}

.trends-wrapper .article-columns.side .side {
  top: 35px;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 540px;
}

.trends-wrapper .trends > div {
  position: relative;
  border: 5px solid #1E9FCC;
  border-right: none;
  padding: 40px 0 40px 40px;
  border-radius: 20px 0 0 20px;
}

.trends-wrapper .trends > div:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 100%;
  right: -200px;
  height: 5px;
  background: #1E9FCC;
}

.trends-wrapper .trends > div:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 100%;
  right: -200px;
  height: 5px;
  background: #1E9FCC;
}

.trends-wrapper .trends .header h2,
#START .trends-wrapper .trends .header h2 {
  text-transform: uppercase;
  font-size: 2.25rem;
  text-align: left;
  font-weight: bold;
  color: #707070;
  margin: 0;
}

.subscribe-wrapper {
  position: relative;
  background: linear-gradient(to right, #1E9FCC, #22CC8D);
  overflow: hidden;
}

.subscribe-wrapper .social-links {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 2;
}

.subscribe-wrapper .social-links .social-icon {
  display: flex;
  align-items: center;
  width: 105px;
  height: 105px;
}

.subscribe-wrapper .social-links .social-icon svg {
  min-width: 105px;
  min-height: 105px;
}

.subscribe-wrapper .social-links .social-icon .name {
  display: block !important;
  flex: 1;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  white-space: nowrap;
  margin-left: 15px;
}

.subscribe-wrapper .social-icon svg path {
  fill: white;
}

.subscribe-wrapper .text-paralax {
  position: absolute;
  z-index: 1;
  font-family: BalooBhai2, tahoma, arial, sans-serif;
  font-size: 13.021vw;
  color: white;
  margin: 0 auto;
  left: 160px;
  top: 0;
  opacity: 0.2;
}

#BOTTOM {
  padding: 30px 0;
}

#BOTTOM, #SYSTEM-FOOT {
  background: white;
}

#BOTTOM h3:first-child {
  margin-top: 0;
}

#BOTTOM, #BOTTOM h3, #BOTTOM p, #BOTTOM span, #BOTTOM a, #BOTTOM strong {
  color: #707070;
}

#BOTTOM .footer-container {
  display: flex;
  align-items: flex-end;
}

#BOTTOM .footer-container .links ul {
  display: flex;
}

#BOTTOM .footer-container .links ul li {
  margin: 0 15px;
  padding-bottom: 0;
}

#BOTTOM ul,
.footer-container .author-wrapper {
  position: relative;
  margin-bottom: 15px;
  padding-left: 15px;
}

#BOTTOM .footer-container .author-wrapper:before {
  content: "";
  position: absolute;
  height: 30px;
  width: 1px;
  background: #22CC8D;
  left: 0;
}

.footer-container .img-wrapper {
  height: 100px;
  width: 100px;
}

#BOTTOM .social-links {
  margin-top: 1em;
}

#BOTTOM .social-icon {
  width: 22px;
  height: 22px;
  margin-right: 20px;
}

#BOTTOM .social-icon svg path {
  fill: #333;
}

#BOTTOM .links ul li {
  padding-bottom: 5px;
}

#BOTTOM .links ul li a:hover {
  color: #333333;
}

#SYSTEM-FOOT {
  border-top: none;
}

#SYSTEM-FOOT .container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#START h2 {
  text-align: center;
}

#START h2.cb_header {
  text-align: left;
}

#START .subtitle {
  font-weight: normal;
  color: #22CC8D;
}

.ps-image::after, .opSlider-inner::after {
  display: none;
}

.promo-product-wrapper {
  padding: 0 30px;
}

.promo-product-wrapper .slick-list {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.product-tile {
  overflow: visible;
}

.product-tile .image-wrapper {
  border-radius: 5px;
  border: 1px solid #ddd;
}

.product-card {
  border: 0;
  overflow: visible;
  min-height: 0;
}

.product-card .content {
  background: #fff;
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
  min-height: 7em;
  padding-left: 0;
}

.product-card .content:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: -2px;
  bottom: -2px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 0 0 20px 0;
  z-index: -1;
  transition: all 600ms;
}

.product-card .content > span, .product-card .content > p, .blog-card .content > p {
  line-height: 1.5;
  overflow: hidden;
  display: box;
  box-orient: vertical;
  line-clamp: 2;
  display: -moz-box;
  -moz-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 300;
}

.product-card h3 {
  font-size: 1.3rem;
}

.product-card .price-wrapper {
  border-radius: 0 0 20px 0;
  padding-left: 0;
}

.product-card .image-wrapper .image {
  padding: 0;
}

.product-card.promo .product-ribbon, .product-tile.promo .product-ribbon {
  top: 35px;
  left: -15px;
  background: #1E9FCC;
}

.product-card:hover .content:after {
  border-right: 2px solid #1E9FCC;
  border-bottom: 2px solid #1E9FCC;
}

#page-product .article-columns.side {
  margin-top: 50px;
}

.side-nav-title {
  font-size: 0.55rem;
}

.status-label {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
}

.table-of-content-wrapper h4 {
  color: #0D0D0D;
  text-transform: uppercase;
}

.table-of-content-wrapper ol {
  font-weight: 300;
}

.table-of-content-wrapper ol li {
  line-height: 1.8;
}

.table-of-content-wrapper ol li a {
  color: #0D0D0D;
  font-weight: 300;
  padding-left: 6px;
}

.table-of-content-wrapper ol li a strong {
  font-weight: 300;
}

#page-contactus .columns .contact_data h3:first-child,
#page-contactus .columns .form-wrapper h2:first-child {
  margin-top: 0;
}

#page-contactus .columns .form-wrapper h2 {
  font-size: 1.6em;
}

.company_name, .add_company_name, .address, .phone, .email, .hours, .add_descr, .fax {
  display: block;
}

.company_name, .add_company_name, .address, .phones-wrapper, .emails-wrapper, .hours, .add_descr, .fax {
  margin-bottom: 1em;
}

.contact-section-icon {
  overflow: hidden;
}

.contact-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.contact-icon .icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin: 0;
  margin-right: 20px;
}

.contact-icon .button {
  margin: 0;
}

.contact-icon strong {
  display: block;
  margin-bottom: 5px;
  color: #22CC8D;
  font-family: BalooBhai2, tahoma, arial, sans-serif;
}

.contact-icon .hours {
  margin-top: 0;
}

.email-wrapper .email, .phone-wrapper .phone {
  display: none;
}

.email-wrapper.show-email .email, .phone-wrapper.show-phone .phone {
  display: flex;
}

.email-wrapper.show-email .button.show-btn, .phone-wrapper.show-phone .button.show-btn {
  display: none;
}

.email-wrapper.show-email, .phone-wrapper.show-phone {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.phone-number > a:hover {
  text-decoration: none;
}

.map iframe {
  width: 100% !important;
}

.contact-simple-layout {
  overflow: hidden;
}

.contact-simple-layout > div {
  float: left;
}

.contact-simple-layout > div h2:first-child, .contact-layout > div h3:first-child {
  margin-top: 0;
}

.contact-simple-layout > div.contact-content {
  width: 35%;
}

.contact-simple-layout > div.contact-form {
  width: 65%;
}

.form-fields-wrapper {
  overflow: visible;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.form-fields-wrapper > .col1,
.form-fields-wrapper > .col2 {
  float: left;
  width: 50%;
  box-sizing: border-box;
}

.form-fields-wrapper > .col1 {
  padding-right: 5px;
}

.form-fields-wrapper > .col2 {
  padding-left: 5px;
}

.form-fields-wrapper .input-wrapper.field-rodo {
  clear: both;
}

.form-fields-wrapper > .col2 .input-wrapper {
  height: calc(100% - 10px);
}

.form-fields-wrapper > .col2 textarea {
  min-height: 120px;
  height: 100%;
}

.form-fields-wrapper .input-wrapper input, .form-fields-wrapper .input-wrapper textarea {
  display: block;
}

.contact-data-form-section {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border: 1px solid #22CC8D;
}

.contact-data-form-section > div {
  box-sizing: border-box;
  padding: 50px;
}

.contact-data-form-section > div.contact-col {
  background: #22CC8D;
  position: relative;
  width: 40%;
}

.contact-data-form-section > div.contact-col:after {
  content: "";
  position: absolute;
  top: 60px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #22CC8D;
  transform: rotate(45deg);
}

#START .contact-data-form-section > div.contact-col,
#START .contact-data-form-section > div.contact-col h2,
#START .contact-data-form-section > div.contact-col h2 .subtitle,
.contact-data-form-section > div.contact-col,
.contact-data-form-section > div.contact-col h2,
.contact-data-form-section > div.contact-col h2 .subtitle {
  color: #fff;
}

.contact-data-form-section > div.add-module-col {
  width: 60%;
}

.contact-data-form-section h2, #START .contact-data-form-section h2,
.contact-data-form-section h3, #START .contact-data-form-section h3 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left;
  font-size: 2.4rem;
}

.contact-data-form-section .contact_data .button {
  min-width: 180px;
}

.contact-data-product-section {
  border: 1px solid #ddd;
  padding: 50px;
}

.contact-data-product-section > div {
  float: left;
  box-sizing: border-box;
  padding-right: 60px;
}

.contact-data-product-section > div.contact-col {
  position: relative;
  width: 35%;
}

.contact-data-product-section > div.add-module-col {
  width: 65%;
  padding-right: 0;
}

.contact-data-product-section h2, #START .contact-data-product-section h2,
.contact-data-product-section h3, #START .contact-data-product-section h3 {
  margin-top: 0;
  text-align: left;
  font-size: 2.6rem;
}

.contact-data-product-section .contact_data {
  padding-top: 30px;
}

.contact-data-product-section .button-style .button,
.contact-data-product-section .email-wrapper .button {
  min-width: 180px;
}

.contact-data-section .contact-box {
  padding: 50px 50px 20px 50px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  position: relative;
}

.contact-data-section .contact-box.small {
  padding-right: 50%;
}

.contact-data-section .contact-box.small .image-wrapper {
  position: absolute;
  top: -15px;
  right: 0;
  bottom: -15px;
  width: 40%;
}

.contact-data-section .contact-box.small .image-wrapper .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-data-section .form-fields-wrapper textarea {
  min-height: 179px;
}

.contact-data-section h2, #START .contact-data-section h2,
.contact-data-section h3, #START .contact-data-section h3 {
  margin-top: 0;
  text-align: left;
  font-size: 2.6rem;
}

.contact-data-section .phone-wrapper .button,
.contact-data-section .email-wrapper .button,
.contact-data-product-section .phone-wrapper .button,
.contact-data-product-section .email-wrapper .button,
.contact-data-form-section .phone-wrapper .button,
.contact-data-form-section .email-wrapper .button {
  min-width: 180px;
}

.contact-data-product-section .contact-icon, .contact-data-form-section .contact-icon {
  align-items: center;
}

.bg-color {
  background: linear-gradient(90deg, #22CC8D, #1E9FCC);
}

.bg-color h1, .bg-color h2, .bg-color h3,
.bg-color .subtitle, #START .bg-color .subtitle,
.bg-color p, .bg-color a, .bg-color span {
  color: #fff;
}

.bg-color .green-alert, .bg-color .red-alert, .bg-color .yellow-alert {
  color: inherit;
}

.check-onscreen {
  position: relative;
}

.check-onscreen.offscreen-bottom {
  top: 100px;
  opacity: 0;
  transition: all 400ms;
}

.check-onscreen.onscreen {
  top: 0;
  opacity: 1;
  transition: all 400ms;
}

.blur-up {
  filter: blur(5px);
  transition: filter 400ms;
}

.blur-up.lazyloaded {
  filter: blur(0);
}

.full-tree li a.main {
  background: #22CC8D;
  border: 1px solid #22CC8D;
  color: #fff;
}

.full-tree li a:hover, .full-tree li a.urhere {
  text-decoration: none;
  background: rgba(34, 204, 141, 0.8);
  border: 1px solid rgba(34, 204, 141, 0.8);
  color: #fff;
}

.promo-price-wrapper {
  font-size: 1.5rem;
  color: rgb(30, 159, 204);
  text-transform: none;
  font-weight: bold;
  line-height: 1;
}

.nice-cart-item .item-content strong {
  width: auto;
  max-width: 300px;
}

.pop-add-info-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  background: #fff9b9;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 500ms;
  opacity: 0;
  margin-bottom: 40px;
}

.pop-add-info-wrapper.info-visible {
  opacity: 1;
}

.pop-add-info {
  position: relative;
  padding: 20px 30px;
  box-sizing: border-box;
  font-size: 1rem;
  z-index: 0;
}

.pop-add-info h3 {
  margin-top: 0;
}

.pop-add-info-wrapper .close-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 5px;
  cursor: pointer;
}

.slick-prev, .slick-next {
  border-radius: 50% !important;
  background: #fff !important;
  border-color: #fff !important;
}

.slick-prev:after, .slick-next:after {
  background-position-y: 14px !important;
  background-repeat: no-repeat;
  background-size: 20px;
}

.slick-prev {
  left: -60px !important;
}

.slick-next {
  right: -60px !important;
}/*# sourceMappingURL=theme.css.map */