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

span + label {
  margin-top: 0;
}

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

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

.submit-controls > div {
  width: 100%;
}

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

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

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

.input-wrapper > * {
  display: block;
}

.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.3;
}
input ::-moz-placeholder, textarea ::-moz-placeholder { /* Firefox 19+ */
  color: #333;
  opacity: 0.3;
}
input :-ms-input-placeholder, textarea :-ms-input-placeholder { /* IE 10+ */
  color: #333;
  opacity: 0.3;
}
input :-moz-placeholder, textarea :-moz-placeholder { /* Firefox 18- */
  color: #333;
  opacity: 0.3;
}

.select-placeholder {
  color: rgba(51, 51, 51, 0.3);
}

/* ----- 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 #bbb;
  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 #bbb;
  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: #66c75a;
  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 #bbb;
  border-radius: 2px;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
  margin-top: -3px;
}

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

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 #bbb;
  border-radius: 100%;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

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

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

.radio-wrapper {
  padding: 15px;
  border: 1px solid #ddd;
}

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

.radio-wrapper {
  min-height: 290px;
}

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

/* --- input type=number --- */
.quantity {
  position: relative;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.quantity input {
  float: left;
  padding: 0 45px 0 18px;
  margin: 0;
}

.quantity input:focus {
  outline: 0;
}

.quantity-nav {
  float: left;
  position: relative;
  height: 50px;
}

.quantity-button {
  position: relative;
  cursor: pointer;
  width: 50px;
  text-align: center;
  color: #000;
  font-size: 16px;
  background: #e5e5e5;
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.quantity-button.quantity-up {
  position: absolute;
  height: 24px;
  top: 1px;
  left: -1px;
  border-radius: 2px;
  transition: all 300ms;
}

.quantity-button.quantity-down {
  position: absolute;
  bottom: 1px;
  left: -1px;
  height: 24px;
  border-radius: 2px;
  transition: all 300ms;
}

.quantity-button.quantity-up:hover, .quantity-button.quantity-down:hover {
  background: #ddd;
}

/* ========== */
/* --- input file --- */
.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.inputfile + label svg {
  margin-right: 10px;
  width: 20px;
}

.inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.monthpicker {
  position: relative;
}

.monthpicker .monthpicker-overly {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.monthpicker .monthpicker-widget {
  position: absolute;
  top: 80%;
  right: 0;
  width: 100%;
  box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.5);
  background: #fff;
  z-index: 10;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.monthpicker .monthpicker-widget .button {
  margin: 0;
}

.monthpicker-widget .input-wrapper, .monthpicker .select {
  height: 36px;
}

.monthpicker .styledSelect {
  padding: 8px 15px;
}

.monthpicker .styledSelect::after {
  top: 15px;
}

/* === wending forms === */
/* =============== zestawy pól ============== */
.input-combo, .input-prefix-combo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.input-combo > div,
.input-prefix-combo > div {
  flex: 1;
}

.input-combo > div:last-child,
.input-prefix-combo > div:last-child {
  padding-right: 0;
}

.input-combo > div.post-code,
.input-combo > div.phone-prefix {
  flex: 0.4;
}

.input-prefix-combo > div.post-code,
.input-prefix-combo > div.phone-prefix {
  flex: 0.4;
}

.input-combo .button {
  margin: 0;
}

.input-combo.nowrap {
  flex-direction: row;
}

.label-input-combo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.label-input-combo > label {
  width: 30%;
  max-width: 150px;
  padding-bottom: 10px;
  display: block;
  padding-right: 10px;
}

.label-input-combo > div {
  flex: 1;
  width: 100%;
  padding-right: 0;
}

.monthpicker-input-combo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.monthpicker-input-combo > .input-wrapper {
  padding: 0;
}

.fakeinput {
  display: block;
  border: 1px solid #ccc;
  background: #f9f9f9;
  width: 50px;
}

.fakeinput * {
  display: inline-block;
  color: #555;
  vertical-align: middle;
}

.mini_input {
  width: 15px;
  font-size: 10px;
  border: none;
  background: none;
  box-shadow: none;
  padding: 3px 0 5px 5px;
}

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

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

/* ==== */
.pass-eye-wrapper input {
  padding-right: 50px;
}

.pass-eye {
  position: absolute;
  top: 0;
  cursor: pointer;
  right: 10px;
  width: 50px;
  height: 50px;
  background-image: url(graphics/svg/novisibility.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  filter: invert(20%);
  transition: filter 300ms;
}

.pass-eye:hover {
  filter: invert(0);
}

.pass-eye.show {
  background-image: url(graphics/svg/visibility.svg);
}

.pass-eye.hide {
  background-image: url(graphics/svg/novisibility.svg);
}

.text-wrapper ul li {
  position: relative;
  padding-left: 22px;
  margin-left: 0;
  list-style: none;
}

.text-wrapper ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #006cd9;
}

html,
body {
  overscroll-behavior: contain;
}

html,
body,
input,
textarea {
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 1.5em 0 0.4em 0;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}

h1,
.h1 {
  font-size: 3.2em;
}

.PAGE h1:first-child,
.PAGE .h1:first-child {
  margin-bottom: 1em;
  font-size: 2.8em;
  font-weight: 300;
}

h2,
.h2 {
  font-size: 2em;
}

#START h2,
#START .h2 {
  font-size: 2.8em;
}

h3,
.h3 {
  font-size: 1.6em;
}

h4,
.h4 {
  font-size: 1.4em;
}

h5,
.h5 {
  font-size: 1.2em;
}

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

a {
  color: #66c75a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.controls .button:last-child,
.controls .app-link:last-child {
  margin-right: 0;
}

.button {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: none;
  font-weight: normal;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 5px;
  min-width: 0;
}

.button.alt {
  color: #fff;
  border: solid 0px #fff;
  background: linear-gradient(0deg, #79d254, #65c75a);
}

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

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

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

.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.ico-left:hover,
.button.ico-right:hover {
  border: 1px solid #66c75a;
}

.button.txt {
  height: 1em;
  padding: 0;
  background: none;
  color: #006cd9;
  min-width: 0;
  line-height: 1.4;
  text-shadow: none;
  font-weight: bold;
}

.button.txt:hover,
.button.txt.urhere {
  color: #66c75a;
  background: none;
}

.button.cta {
  height: 50px;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 1rem;
}

.button.alt.cta {
  padding-right: 60px;
}

.button.alt.cta:after {
  content: url("graphics/right.png");
  position: absolute;
  top: 0;
  right: 25px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}

.button.alt.cta:hover:after {
  right: 20px;
}

.button.cta.jq-backbutton {
  padding-left: 60px;
  height: 58px;
  background: #fff;
  border: 1px solid #ddd;
  text-shadow: none;
  color: #646472;
}

.button.cta.jq-backbutton:after {
  content: url("graphics/left-gray.png");
  position: absolute;
  top: 0;
  left: 25px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}

.button.cta.jq-backbutton:hover:after {
  left: 20px;
}

.button.back-btn {
  padding-left: 60px;
}

.button.back-btn:after {
  content: url("graphics/left.png");
  position: absolute;
  top: 0;
  left: 25px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}

.button.back-btn:hover:after {
  left: 20px;
}

.button.white,
.button.white:hover,
.button.border-button,
.button.border-button:hover {
  background: #fff;
  color: #31313f;
  border: 1px solid #ddd;
  text-shadow: none;
}

.button.white.back-btn:after {
  content: url("graphics/left-gray.png");
}

.button.show-on-mobile a {
  color: #fff;
}

.app-link {
  margin-right: 20px;
  margin-bottom: 15px;
  display: inline-block;
}

.button:hover {
  background: linear-gradient(0deg, #007af4, #007af4);
}

.button.alt:hover {
  background: linear-gradient(0deg, #79d254, #79d254);
}

.button.disabled {
  background: #aaa;
  opacity: 0.6;
  cursor: default;
  color: #fff;
}

.MEGADROPDOWN-PLACEHOLDER {
  height: 20px;
  border-top: 1px solid #ddd;
}

.megadropdown {
  z-index: 19;
}

.megadropdown .hide-button {
  bottom: 0;
  height: 40px;
  border-radius: 4px 4px 0 0;
  width: 0;
  min-width: 0;
  padding: 0;
  padding-right: 100px;
}

.megadropdown .hide-button .arrow-close {
  width: 100px;
}

.dropdown-content-wrapper > div {
  float: left;
  box-sizing: border-box;
}

.dropdown-content-wrapper > div.section-1 {
  width: 70%;
  padding-right: 30px;
}

.dropdown-content-wrapper > div.section-2 {
  width: 30%;
  padding-left: 30px;
}

.page-overlay {
  transition: all 300ms;
}

.megadropdown-show .page-overlay {
  background: rgba(0, 0, 0, 0.3);
  filter: blur(5px);
}

.container {
  padding: 0 70px;
}

.PAGE {
  padding: 50px 0;
}

.text-wrapper,
.header h2,
.form-wrapper {
  max-width: 1000px;
}

.icon {
  width: 65px;
  height: 65px;
}

.updated {
  font-size: 0.9rem;
  font-weight: bold;
  color: #006cd9;
}

.breadcrumps {
  padding-bottom: 15px;
}

.article-footer-controls {
  border-top: 1px solid #ddd;
  padding: 20px 0 50px 0;
  margin-top: 30px;
  overflow: hidden;
}

.article-footer-controls .ctrl-left {
  float: left;
  text-align: left;
}

.article-footer-controls .ctrl-right {
  float: right;
  text-align: right;
}

.article-footer-controls .ctrl-right .button:last-child {
  margin-right: 0;
}

.strike {
  position: relative;
  display: none;
}

.strike:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #333;
}

table {
  width: 100%;
  max-width: 100%;
}

table tr td,
table tr th {
  text-align: left;
}

table tr td.right {
  text-align: right;
}

table tr td.center {
  text-align: center;
}

table tr td h5 {
  margin-top: 0;
}

table.transfer-summary-table {
  border: 0;
  max-width: 600px;
  background: none;
  margin: 0 -10px;
}

table.transfer-summary-table tr {
  background: none;
}

table.transfer-summary-table tr td {
  border: 0;
  font-size: 1rem;
  padding: 5px 10px;
}

table.transfer-summary-table tr td label {
  font-size: 0.9rem;
}

.distinction {
  color: #66c75a;
}

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

.shadow-box {
  background: #fff;
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
  border-radius: 10px;
  overflow: visible;
  padding: 30px;
}

.calc-mod-wrapper.shadow-box {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.alt-bg-box {
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
}

.shadow-box h3:first-child,
.alt-bg-box h3:first-child,
.shadow-box h4:first-child,
.alt-bg-box h4:first-child {
  margin-top: 0;
  margin-bottom: 20px;
}

.small-form-wrapper {
  width: 40%;
}

.side-columns {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-left: -30px;
  margin-right: -30px;
}

.side-columns > div {
  padding: 0 30px 0 30px;
  box-sizing: border-box;
  border-right: 1px solid #ddd;
  flex: 1;
}

.side-columns > div.side {
  max-width: 440px;
  border-right: 0;
}

.side-columns > div.side > div {
  margin-bottom: 30px;
}

.side-columns > div.side > div:last-child {
  margin-bottom: 0;
}

.form-section {
  margin-bottom: 30px;
  max-width: 910px;
  box-sizing: border-box;
}

.next-step-controls {
  max-width: 910px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
  margin-top: 30px;
}

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

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

.ui-accordion {
  max-width: 910px;
}

#START .ui-accordion {
  max-width: 800px;
}

.ui-accordion-header,
h2.ui-accordion-header,
#START h2.ui-accordion-header {
  padding: 20px 60px 20px 25px;
  border-radius: 3px;
  font-size: 1rem;
  margin-top: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  background: #fff;
  transition: all 300ms;
  position: relative;
  font-weight: normal;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  /*box-shadow: $box-shadow;*/
}

.ui-accordion-header:hover,
h2.ui-accordion-header:hover,
.ui-accordion-header-active,
h2.ui-accordion-header-active {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.ui-accordion-content {
  padding: 25px 10px;
  position: relative;
  margin-top: 0;
  margin-bottom: 15px;
  background: none;
  font-size: 0.9rem;
}

.ui-accordion-header-icon {
  width: 40px;
  height: 40px;
  background: none;
  position: absolute;
  top: 12px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms;
}

.ui-accordion-header-icon:after {
  content: url("graphics/rozwin.png");
}

.ui-accordion-header-active .ui-accordion-header-icon,
h2.ui-accordion-header-active .ui-accordion-header-icon {
  transform: rotate(180deg);
}

#BANER-CONTENT {
  position: relative;
}

.header.transfer-products {
  display: none;
}

#START .header.transfer-products {
  display: block;
}

.transfer-item {
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
  padding: 40px 50px 15px 70px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 300ms;
}

.transfer-item.item-disabled,
.transfer-item2.item-disabled {
  filter: grayscale(1);
  background: #f8f8f8;
}

.transfer-item > div {
  margin-right: 30px;
}

.transfer-item > div:last-child {
  margin-right: 0;
}

.transfer-item .h3 {
  margin-top: 0;
  font-size: 1.05rem;
  color: #31313f;
}

.transfer-item .cotnent .h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.transfer-item .icon-wrapper .icon {
  width: 50px;
  height: 50px;
}

.transfer-item .content {
  flex: 1;
  font-size: 0.85rem;
}

.transfer-item .content p {
  margin-bottom: 0;
}

.transfer-item2-wrapper {
  position: relative;
}

.transfer-item2 .content {
  position: relative;
}

.transfer-item-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -8px;
  right: 5px;
  z-index: 5;
}

.transfer-item2-passes .phone-txt {
  font-size: 0.7rem;
}

.transfer-item .content strong,
.transfer-item .content span,
.transfer-item .content p,
.transfer-item .content a {
  display: block;
}

.transfer-item .content a.button {
  display: flex;
  margin-top: 10px;
  margin-bottom: 0;
}

.transfer-item .price-box {
  width: auto;
  display: block;
  line-height: 1;
  text-align: right;
  padding-top: 10px;
  transition: padding 300ms;
}

.transfer-item .price-box .button {
  margin: 0;
  margin-top: 10px;
  opacity: 0;
  transition: all 300ms;
}

.price {
  font-size: 2.6rem;
  font-weight: 500;
  color: #006cd9;
  display: block;
  transition: font-size 300ms;
  white-space: nowrap;
}

.price .prefix {
  font-size: 1.2rem;
  display: inline-block;
  margin-right: 5px;
}

.price-old {
  font-size: 1.2rem;
  color: #646472;
  display: block;
  text-decoration: line-through;
  transition: font-size 300ms;
  display: none;
}

.price.txt {
  font-size: 1.4rem;
}

.transfer-item .add-txt {
  color: #006cd9;
  font-size: 0.8rem;
}

a.transfer-item:hover {
  text-decoration: none;
  box-shadow: 0 0 12px rgba(34, 34, 34, 0.3);
}

a.transfer-item:hover .price-box {
  padding-top: 0;
}

a.transfer-item:hover .price-box .price {
  font-size: 1.8rem;
}

a.transfer-item:hover .price-box .price-old {
  font-size: 0.9rem;
}

a.transfer-item:hover .price-box .button {
  opacity: 1;
}

.transfer-item.small {
  box-shadow: none;
  border: 1px solid #bbb;
  padding: 15px 15px;
  border-radius: 3px;
}

.transfer-item.small .icon {
  width: 40px;
  height: 40px;
}

.transfer-item.small > div {
  margin-right: 15px;
}

.transfer-item.small > div:last-child {
  margin-right: 0;
}

.transfer-item.small .add-text {
  color: #006cd9;
}

.selected-transfer-wrapper .transfer-item.small.unavailable {
  filter: grayscale(100%);
  opacity: 0.8;
}

#transfer-data-descr.transfer-item.small.unavailable {
  border: 1px solid red;
}

#selected-transfer-item-wrapper {
  padding-right: 50px;
  position: relative;
  cursor: pointer;
}

#selected-transfer-item-wrapper:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url("graphics/rozwin.png");
  background-repeat: no-repeat;
  background-position: center;
}

.transfer-item2 {
  display: block;
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
  padding-bottom: 70px;
  border-radius: 10px;
  background-color: #fff;
  transition: all 300ms;
  position: relative;
}

a.transfer-item2 {
  text-decoration: none;
}

.transfer-item2 .content h3 {
  min-height: 2.65em;
  padding-bottom: 8px;
  font-size: 1rem;
}

.transfer-item2 .content .add-txt {
  font-size: 0.65rem;
  display: block;
  font-weight: 500;
  padding-right: 25px;
  line-height: 1.4;
}

.transfer-item2 .content-wrapper {
  padding: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
  position: relative;
}

.transfer-item2 .content-wrapper .icon-wrapper {
  margin-right: 14px;
}

.transfer-item2 .content-wrapper .icon-wrapper .icon {
  width: 32px;
  height: 32px;
}

.transfer-item2 .price-box {
  border-top: 1px solid #ddd;
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.transfer-item2 .price-box .price {
  font-size: 1.2rem;
  margin-right: 10px;
}

.transfer-item2 .price-box .price .prefix {
  font-size: 0.9rem;
}

.transfer-item2 h3 {
  font-size: 1.1rem;
}

.transfer-item2 h3,
.transfer-item2 .button {
  margin: 0;
}

.transfer-item2 .button {
  padding: 5px 10px;
  font-size: 0.8rem;
  height: 40px;
}

.transfer-item2:hover {
  box-shadow: 0 0 12px rgba(34, 34, 34, 0.3);
}

.promotion-card {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
  padding-bottom: 250px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.promotion-card .header-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.promotion-card .content {
  position: relative;
  z-index: 1;
}

.promotion-card .header-wrapper .icon-wrapper {
  margin-right: 15px;
}

.promotion-card .header-wrapper .icon-wrapper .icon {
  width: 65px;
  height: 65px;
}

.promotion-card .header-wrapper .h-title {
  flex: 1;
}

#START .promotion-card .header-wrapper .h-title .h3,
.promotion-card .header-wrapper .h-title .h3 {
  margin-top: 0;
  font-weight: bold;
  font-size: 1.4rem;
}

#START .promotion-card .header-wrapper .h-title .h3 > strong,
.promotion-card .header-wrapper .h-title .h3 > strong,
#START .promotion-card .header-wrapper .h-title .h3 .subtitle > strong,
.promotion-card .header-wrapper .h-title .h3 .subtitle > strong {
  color: #66c75a;
}

#START .promotion-card .header-wrapper .h-title .h3 .subtitle,
.promotion-card .header-wrapper .h-title .h3 .subtitle {
  font-weight: bold;
  font-size: 1.4rem;
  color: #006cd9;
}

#START .promotion-card.type-2 .header-wrapper .h-title .h3 .subtitle {
  color: #fff;
  font-size: 2rem;
}

#START .promotion-card.type-2 .header-wrapper .h-title .h3 > strong {
  font-size: 2.4rem;
}

.promotion-card .controls {
  padding-top: 20px;
}

.promotion-card ul li {
  list-style: none;
  padding-left: 30px;
  padding-bottom: 10px;
  margin-left: 0;
  position: relative;
}

.promotion-card ul li:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 20px;
  height: 16px;
  background-image: url("graphics/svg/check.svg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 20px;
}

.promotion-card .controls-wrapper {
  padding-left: 30px;
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 1;
}

.promotion-card .bg-icon {
  position: absolute;
  bottom: 55px;
  right: 0;
  width: 50%;
  height: 50%;
  max-height: 300px;
  max-width: 200px;
  opacity: 0.6;
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.promotion-card.type-2 {
  background-color: #006cd9;
  padding-bottom: 250px;
}

#START .promotion-card.type-2 .header-wrapper .h-title h3,
.promotion-card.type-2 .header-wrapper .h-title h3,
#START .promotion-card.type-2 .header-wrapper .h-title h3 .subtitle,
.promotion-card.type-2 .header-wrapper .h-title h3 .subtitle {
  color: #fff;
}

.promotion-card.type-2 .content {
  color: #fff;
}

#START .promotion-card.type-2 .header-wrapper .h-title h3,
.promotion-card.type-2 .header-wrapper .h-title h3 {
  font-size: 2.9rem;
}

#START .promotion-card.type-2 .header-wrapper .h-title h3 .subtitle,
.promotion-card.type-2 .header-wrapper .h-title h3 .subtitle {
  font-size: 1.9rem;
}

.promotion-card.type-2 .transfer-progress-wrapper > .txt-wrapper .txt {
  color: #fff;
  flex: 1;
  text-align: right;
  font-size: 0.9rem;
}

.promotion-card.type-2 .icon-txt {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.2rem;
}

.promotion-card.type-2 .icon-txt .ico {
  height: 50px;
  margin-right: 6px;
}

.promotion-card.type-2 .transfer-progress-wrapper .transfer-progress-line .progress-bar {
  left: auto;
  right: 0;
  background: linear-gradient(90deg, #77d156, #016fdd);
}

.promotion-card.type-2 .transfer-progress-wrapper > .txt-wrapper .count-progress,
.promotion-card.type-2 .transfer-progress-wrapper > .txt-wrapper .count-progress strong {
  color: #fff;
}

.transfer-progress-wrapper {
  padding: 15px 0;
  width: 100%;
  box-sizing: border-box;
}

.transfer-progress-wrapper > .txt-wrapper {
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #31313f;
  display: flex;
  align-items: flex-end;
}

.transfer-progress-wrapper > .txt-wrapper .count-progress strong {
  font-size: 1.1rem;
}

.transfer-progress-wrapper > .txt-wrapper .txt {
  font-size: 1.1rem;
}

.transfer-progress-wrapper > .txt-wrapper .txt strong {
  color: #66c75a;
}

.transfer-progress-wrapper .transfer-progress-line {
  height: 8px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #e6e6e6;
  border: 1px solid #fff;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
}

.transfer-progress-wrapper .transfer-progress-line .progress-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #016fdd, #77d156);
}

.transfer-progress-wrapper .transfer-progress-line > span {
  position: relative;
  background: transparent;
  flex: 1;
}

.transfer-progress-wrapper .transfer-progress-line > span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: #d1d1d1;
  z-index: 1;
}

.transfer-progress-wrapper .transfer-progress-line > span:last-child:after {
  display: none;
}

.transfer-item2 .content-wrapper .transfer-progress-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 15px 5px 15px;
}

.transfer-item2 .content-wrapper .transfer-progress-wrapper > .txt-wrapper .count-progress strong,
.transfer-item2 .content-wrapper .transfer-progress-wrapper > .txt-wrapper .txt {
  font-size: 1rem;
}

.transfer-progress-wrapper .count-progress {
  margin-right: 24px;
}

@keyframes demo-pulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.transfer-progress-wrapper.check-onscreen.demo .progress-bar {
  transition: all 3s linear;
  width: 0 !important;
  left: 0 !important;
  right: auto !important;
}

.transfer-progress-wrapper.check-onscreen.demo .txt {
  opacity: 0;
  transform: scale(0.5);
  transition: all 500ms;
}

.transfer-progress-wrapper.check-onscreen.onscreen.demo .progress-bar {
  width: 100% !important;
}

.transfer-progress-wrapper.check-onscreen.onscreen.demo .txt {
  transition-delay: 3s;
  transform: scale(1);
  opacity: 1;
}

.add-interactive-mod-wrapper {
  width: 100%;
  background-color: #eee;
  border-radius: 10px;
  position: relative;
  padding: 50px;
  box-sizing: border-box;
}

.add-interactive-mod-wrapper .header {
  z-index: 1;
  position: relative;
}

.add-interactive-mod-wrapper .image-wrapper {
  position: absolute;
  top: 50px;
  right: -50px;
  bottom: 0;
  width: auto;
  z-index: 0;
}

.add-interactive-mod-wrapper .image-wrapper .image {
  height: 100%;
}

.add-interactive-mod-wrapper .image-wrapper .image img {
  max-height: 100%;
  float: right;
}

.add-interactive-mod-wrapper .add-interactive-mod-content .header {
  padding-top: 25px;
  margin: 0;
  max-width: 700px;
}

.add-interactive-mod-wrapper .add-interactive-mod-content .h2 > strong {
  color: #66c75a;
}

.add-interactive-mod-wrapper .add-interactive-mod-content span.subtitle {
  font-size: 1em;
}

.add-interactive-mod-wrapper .add-interactive-mod-content .add-interactive-frame {
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.add-interactive-mod-wrapper .add-interactive-mod-content .add-interactive-frame {
  font-weight: bold;
}

.add-interactive-mod-wrapper .add-interactive-mod-content .add-interactive-frame img {
  height: 40px;
  margin-right: 10px;
}

.add-interactive-transfer-baner,
a.add-interactive-transfer-baner {
  margin-top: 30px;
  padding: 30px;
  border: 2px solid #66c75a;
  border-radius: 10px;
  background-image: url("graphics/add-interactive-mod-map.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  display: block;
  text-decoration: none;
}

.add-interactive-transfer-baner h2 {
  margin: 0;
}

.add-interactive-transfer-baner h2 strong {
  color: #66c75a;
}

.add-interactive-transfer-baner h2 i {
  font-weight: normal;
  font-style: normal;
}

.add-interactive-transfer-baner h2 span.subtitle {
  margin-bottom: 30px;
}

.newsletter-module-wrapper .submit-controls {
  padding: 0;
}
.newsletter-module-wrapper .submit-controls .submit-area {
  text-align: left;
}

.newsletter-module-wrapper .newsletter-form-item h2 {
  font-size: 1.6em;
  font-weight: 400;
}

.newsletter-module-wrapper .newsletter-form-item .input-wrapper.field-email {
  width: 370px;
}
.newsletter-module-wrapper .newsletter-form-item .input-wrapper.field-email label {
  color: #000000;
  opacity: 40%;
  font-weight: 500;
  background-color: transparent;
}

.newsletter-module-wrapper .newsletter-form-item input {
  background-color: #E0E0E0;
}

.newsletter-module-wrapper .form-fields-wrapper .checklist.rodo {
  width: 650px;
}

.newsletter-module-wrapper .newsletter-form-item .form-fields-wrapper .green-alert {
  width: 300px;
}

.newsletter-module-wrapper .newsletter-form-item .form-fields-wrapper > .col1 {
  width: auto;
  float: none;
}

.footer {
  text-align: left;
}

.header {
  max-width: 1270px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
  overflow: hidden;
  transition: all 300ms;
}

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

.card .content,
.card .controls {
  padding: 0 30px;
}

.card .controls {
  bottom: 30px;
}

.card .controls-placeholder {
  padding-bottom: 30px;
}

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

a.card {
  text-decoration: none;
  color: #646472;
}

a.card:hover {
  box-shadow: 0 0 12px rgba(34, 34, 34, 0.3);
}

.tile.sb-tile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  z-index: 0;
  margin: 0;
  padding: 0 70px;
  box-sizing: border-box;
}

.tile.sb-tile {
  padding: 50px 70px;
  overflow: hidden;
  width: 100%;
}

.tile.sb-tile.app-link {
  margin: 0;
  padding: 0;
}

.tile.sb-tile .image-wrapper {
  width: 100%;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.tile.sb-tile .image-wrapper .mask {
  position: absolute;
  top: 40px;
  left: -70px;
  right: 70px;
  bottom: -40px;
  background: #e5e5e5;
  border-radius: 10px;
  z-index: -1;
}

.tile.sb-tile .image-wrapper .image {
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
}

.tile.sb-tile .image-wrapper .image img {
  display: block;
  margin: 0;
}

.tile.sb-tile .content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding-left: 70px;
}

.tile.sb-tile .content > div {
  width: 100%;
}

.tile.sb-tile .controls {
  text-align: left;
  margin-top: 2em;
}

#START .page-section.trio-padding-none {
  padding-top: 40px;
  padding-bottom: 40px;
}

.tile.sb-tile.trio-item {
  padding: 0 70px;
}

.tile.sb-tile.trio-item .content {
  padding-left: 10px;
}

.tile.sb-tile.trio-item .image-wrapper > div {
  padding-bottom: 70%;
  position: relative;
}

.tile.sb-tile.trio-item .image-wrapper > div .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.tile.sb-tile.trio-item .image-wrapper > div .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.tile.sb-tile.app-link .image-wrapper {
  order: 2;
  margin-right: -70px;
}

.tile.sb-tile.app-link .image-wrapper:before {
  display: none;
}

.tile.sb-tile.app-link .content {
  order: 1;
  padding-left: 0;
  padding-right: 70px;
}

.slick-dots {
  bottom: -40px !important;
}

.slick-dots li button::before {
  font-size: 42px !important;
  color: #006cd9 !important;
}

.icon-tile {
  padding-bottom: 30px;
}

.icon-tile h3 {
  font-size: 1.05rem;
}

.icon-tile .content {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.icon-tile .controls {
  position: relative;
  margin-top: 10px;
}

.icon-tile .controls .button {
  display: flex;
}

.megadropdown-content .icon-tile {
  padding: 30px 20px;
}

.megadropdown-content .section-0 .header h2 {
  display: none;
}

.megadropdown-content .section-1 .columns > div {
  padding: 0;
}

a.icon-tile {
  color: #646472;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  transition: all 300ms;
  display: block;
  padding: 30px 20px;
  border-radius: 10px;
}

a.icon-tile:hover {
  box-shadow: 0 0 12px rgba(34, 34, 34, 0.3);
}

.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: #006cd9;
}

.icon-card-lux-section .icon-card .icon-wrapper {
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(90deg, #006cd9, #66c75a);
  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%;
}

.quote-section {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
  border-radius: 10px;
  padding: 30px;
}

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

.quote-section h2,
#START .quote-section h2 {
  text-align: center;
  margin: 0 auto;
}

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

.quote-section blockquote,
.quote-section span.signature {
  text-align: center;
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
}

.quote-section span.signature {
  text-transform: uppercase;
  color: #66c75a;
  margin-top: 1em;
  font-size: 0.9rem;
}

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

.opinion-card {
  padding-left: 40px;
  padding-top: 40px;
  background-image: url("graphics/svg/cytat.svg");
  background-position: top left;
  background-size: 80px;
  background-repeat: no-repeat;
}

.opinion-card h3 {
  margin-top: 0;
}

.opinion-card .signature {
  display: block;
  margin-top: 20px;
  color: #66c75a;
  font-weight: bold;
}

.article-section.lead-section .text-wrapper {
  font-size: 1.1rem;
}

.article-section.lead-section .social-sharing-wrapper .social-sharing-module {
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #ddd;
}

#START .article-section.padding-none {
  padding-top: 0;
  padding-bottom: 0;
}

#START .article-section.padding-top {
  padding-top: 80px;
  padding-bottom: 0;
}

#START .article-section.padding-bottom {
  padding-top: 0;
  padding-bottom: 80px;
}

#START .article-section.padding-both {
  padding-top: 80px;
  padding-bottom: 80px;
}

#START .page-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

#START #TOP {
  background: #eee;
  border-bottom: 0;
}

#TOP {
  border-bottom: 1px solid #ddd;
  background: #fff;
}

#TOP.sticked,
#START #TOP.sticked {
  z-index: 20;
  background: #fff;
}

#logo {
  left: 20px;
  top: 15px;
  bottom: 15px;
}

.sticked #logo img {
  width: auto;
}

nav.desktop {
  padding-right: 15px;
}

nav.desktop .nav-button {
  cursor: default;
  align-items: center;
}

nav.desktop .nav-button a {
  height: auto;
  color: #646472;
  font-size: 0.95rem;
}

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

nav.desktop .nav-button a:hover,
nav.desktop .nav-button.urhere a {
  color: #66c75a;
}

nav.desktop .submenu {
  top: 85px;
}

#TOP.sticked nav.desktop .submenu {
  top: 70px;
}

nav.desktop ul li:hover .submenu {
  animation: none;
}

.login-buttons {
  float: right;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  position: relative;
  padding-left: 25px;
}

.login-buttons .button {
  margin-bottom: 0;
}

.login-buttons > a {
  margin-right: 30px;
  font-size: 0.95rem;
}

.login-buttons > a:last-child {
  margin-right: 0;
}

.login-buttons .login {
  color: #fff;
  text-decoration: none;
  transition: color 300ms;
}

.login-buttons .sign-up {
  color: #646472;
  transition: all 300ms;
}

.login-buttons .sign-up:hover {
  color: #66c75a;
  text-decoration: none;
}

#TOP .login-buttons:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 0;
  height: 16px;
  width: 1px;
  background: #9797a6;
}

.lang-wrapper {
  float: right;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 0 25px;
}

.lang-wrapper a {
  display: block;
  text-transform: uppercase;
  margin-right: 10px;
  color: #646472;
  transition: all 300ms;
}

.lang-wrapper a:last-child {
  margin-right: 0;
}

#TOP .lang-wrapper:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 0;
  height: 16px;
  width: 1px;
  background: #9797a6;
}

.lang-wrapper a:hover,
.lang-wrapper a.urhere {
  color: #66c75a;
  text-decoration: none;
}

.my-account-area {
  position: relative;
}

.my-account-button {
  border-radius: 3px;
  height: 50px;
  background: none;
  padding-right: 40px;
  padding-left: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  text-decoration: none !important;
  color: #fff;
}

.my-account-button:after {
  content: url("graphics/rozwin.png");
  position: absolute;
  width: 19px;
  height: 19px;
  top: 50%;
  right: 10px;
  margin-top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}

.my-account-button .user-name-ico {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 50%;
  background: #006cd9;
  transition: all 300ms;
}

.my-account-button .user-name-ico > * {
  opacity: 0.8;
  transition: all 300ms;
}

.my-account-button .user-name-ico span {
  line-height: 1;
  font-size: 0.9rem;
}

.my-account-button:hover .user-name-ico > *,
.my-account-area.show-panel .my-account-button .user-name-ico > * {
  opacity: 1;
}

.my-account-area .my-account-panel {
  position: absolute;
  top: 100%;
  margin-top: 5px;
  height: 0;
  right: 0;
  width: 100px;
  overflow: hidden;
  transition: all 300ms;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  z-index: 20;
}

.my-account-area .my-account-panel > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  box-sizing: border-box;
  padding: 10px 25px;
}

.my-account-area.show-panel .my-account-panel {
  width: 220px;
}

.my-account-area.show-panel .my-account-button:after {
  transform: rotate(180deg);
}

.top-account-panel {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.top-account-panel span.username {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(100, 100, 114, 0.6);
}

.top-account-panel .your-account-number {
  font-size: 0.7rem;
  color: rgba(100, 100, 114, 0.6);
}

.content-account-panel a {
  text-decoration: none;
  color: rgba(100, 100, 114, 0.8);
  display: block;
  padding: 5px 0;
  text-align: left;
  transition: all 300ms;
}

.content-account-panel a:hover {
  color: #646472;
}

.bottom-account-panel {
  padding-top: 10px;
  border-top: 1px solid #ddd;
  margin-top: 15px;
}

.logout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: rgba(100, 100, 114, 0.8);
}

.logout .ico {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.logout:hover {
  color: #646472;
  text-decoration: none;
}

.banner-section-wrapper {
  padding-top: 200px;
  background-color: rgba(22, 42, 63, 0.6);
  background-repeat: no-repeat;
  background-position: bottom right -40px;
  background-size: 60%;
  height: auto;
}

.banner-section-wrapper .header-wrapper,
.banner-section-content .block-wrapper {
  padding-right: 680px;
}

.banner-section-content {
  padding: 40px 0;
}

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

.banner-content .text-wrapper {
  margin: 0 auto;
}

.banner-section-content .block-wrapper {
  position: relative;
}

.banner-section-wrapper .container.alt {
  max-width: 1410px;
}

#TOP-MAIN {
  width: 95vw;
  max-width: 1410px;
  border-radius: 10px;
  background-color: #fff;
  margin: 0 auto;
  top: 15px;
  height: 70px;
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
}
#TOP-MAIN .container.alt {
  padding: 0 10px;
}

#TOP,
#TOP.sticked,
#START #TOP.sticked {
  height: 0;
}

.calc-mod-wrapper {
  width: 100%;
  height: auto;
  padding: 50px;
  box-sizing: border-box;
}

.calc-mod-wrapper h4 {
  font-size: 1.35em;
  margin: 0 !important;
}

.banner-section-content .calc-mod-wrapper {
  width: 450px;
  z-index: 3;
}

.banner-section-content .calc-mod-wrapper .transfer-item.small {
  padding: 15px 30px;
}

.banner-section-content .calc-mod-wrapper h4 {
  display: none;
}

.calc-mod-wrapper .controls {
  text-align: right;
}

.banner-section-content .calc-mod-wrapper {
  position: absolute;
  bottom: 20px;
  right: 0px;
  padding: 30px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.25);
}

.banner-section-content .columns.x2 > div {
  width: 100%;
  display: flex;
  gap: 30px;
}

.banner-section-content .block-wrapper .icon-tile {
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1px solid #fff;
  padding: 30px;
  border-radius: 10px;
  z-index: 2;
  max-width: 260px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.banner-section-content .block-wrapper .icon-tile .content {
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  color: rgb(255, 255, 255);
}
.banner-section-content .block-wrapper .icon-tile p {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 23.4px;
}

.banner-section-content .block-wrapper .icon-tile .icon {
  padding-bottom: 25px;
}

.banner-section-content .block-wrapper .icon-tile .content {
  padding-left: 0;
}

.amount-wrapper {
  padding: 0 25px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.amount-wrapper.gbp {
  padding-top: 25px;
  padding-bottom: 35px;
}

.amount-wrapper.pln {
  padding-top: 42px;
  padding-bottom: 35px;
}

.amount-wrapper .currency {
  width: auto;
  position: relative;
  text-align: center;
  padding-right: 10px;
}

.amount-wrapper .currency span {
  display: block;
  font-size: 1.7rem;
  color: #31313f;
  line-height: 1.4;
  margin-top: 5px;
}

.amount-wrapper .currency:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 100px;
  border: 1px dashed #66c75a;
}

.amount-wrapper.gbp .currency:after {
  top: 100%;
}

.amount-wrapper.pln .currency:after {
  bottom: 100%;
}

.amount-wrapper .amount {
  flex-grow: 1;
}

.amount-wrapper .input-wrapper {
  padding: 0;
}

.amount-wrapper .amount .value,
.amount-wrapper .amount .key {
  display: block;
  text-align: right;
  line-height: 1.2;
  font-size: 0.7rem;
}

.amount-wrapper .amount .value {
  font-size: 1.7rem;
  color: #31313f;
  border-bottom: 2px solid #006cd9;
}

.amount-wrapper .amount .value input {
  border: 0;
  font-size: 1.7rem;
  color: #31313f;
  text-align: right;
  padding: 0;
}

.amount-wrapper .amount .key {
  color: #9797a5;
  margin-top: 6px;
}

.calc-mod-wrapper .exchange-rate-wrapper {
  font-size: 0.7rem;
  text-align: right;
  color: #9797a5;
}

.pln-alert {
  position: absolute;
  top: 25px;
  transform: translate(0, -50%);
  left: auto;
  right: 60px;
  margin-left: 5px;
  width: 20px;
  height: 20px;
}

.pln-alert img {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

.pln-alert .tooltip {
  position: absolute;
  width: 200px;
  bottom: 50%;
  right: 100%;
  transform: translate(0, 50%);
  font-size: 0.7rem;
  background: #fff;
  padding: 3px 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: none;
}

.pln-alert:hover .tooltip,
.pln-alert.hover .tooltip {
  display: block;
}

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

#BOTTOM {
  padding: 90px 0 60px 0;
  border-top: 1px solid #f5f5f5;
  font-size: 0.9rem;
}

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

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

#BOTTOM,
#BOTTOM h3,
#BOTTOM p,
#BOTTOM span,
#BOTTOM strong,
#BOTTOM .links ul li a {
  color: rgba(100, 100, 114, 0.8);
}

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

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

#BOTTOM .social-icon svg * {
  fill: #646472;
}

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

#BOTTOM .links ul li:last-child {
  padding-bottom: 0;
}

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

#BOTTOM .controls {
  text-align: right;
}

#SYSTEM-FOOT {
  border-top: 1px solid #d6d6d6;
  padding: 30px 0;
  position: static;
  height: auto;
}

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

#SYSTEM-FOOT .add-info {
  font-size: 0.8rem;
  line-height: 1.3;
  color: rgba(100, 100, 114, 0.6);
}

#SYSTEM-FOOT .copyright {
  opacity: 1;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
#START h2 {
  text-align: left;
}

span.subtitle {
  font-weight: 300;
  font-size: 0.6em;
  color: #31313f;
}

.cb-text_photo.cb-elem-position-right .image-wrapper,
.cb-text_photo.cb-elem-position-left .image-wrapper {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.cb-text_photo.cb-elem-position-right .image-wrapper {
  margin-left: 90px;
}

.cb-text_photo.cb-elem-position-left .image-wrapper {
  margin-right: 90px;
}

.cb-text_photo.cb-elem-position-right .image-wrapper .mask,
.cb-text_photo.cb-elem-position-left .image-wrapper .mask {
  position: absolute;
  top: 20px;
  bottom: -20px;
  background: #e5e5e5;
  border-radius: 10px;
  z-index: -1;
}

.cb-text_photo.cb-elem-position-right .image-wrapper .mask {
  left: 60px;
  right: -60px;
}

.cb-text_photo.cb-elem-position-left .image-wrapper .mask {
  left: -60px;
  right: 60px;
}

.cb-text_photo.cb-elem-position-right .image-wrapper .image,
.cb-text_photo.cb-elem-position-left .image-wrapper .image {
  border-radius: 10px;
  overflow: hidden;
}

.columns.x1 > div {
  width: 100%;
}

.transfer-step-header {
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 30px;
}

.transfer-step-header h2:first-child {
  margin-top: 0;
}

#transfer-data .calc-mod-wrapper {
  width: 100%;
}

.calc-mod-wrapper.simple-style {
  padding: 0;
}

.calc-mod-wrapper.simple-style .amount-wrapper .currency::after {
  display: none;
}

.calc-mod-wrapper.simple-style .amount-wrapper .amount .value {
  border: 0;
}

.calc-mod-wrapper.simple-style .amount-wrapper .amount .value {
  border: 1px solid #ddd;
}

.calc-mod-wrapper.simple-style .amount-wrapper.gbp .amount .key {
  display: none;
}

.calc-mod-wrapper .selected-transfer-wrapper {
  margin-bottom: 6px;
}

.calc-mod-wrapper.simple-style h4,
.transfer-data-details h4 {
  margin-bottom: 20px !important;
}

.transfer-data-details h4 {
  margin-top: 0;
}

#transfer-data-descr {
  margin-bottom: 30px;
}

.beneficiary {
  position: relative;
  padding: 10px;
  font-size: 0.8rem;
  cursor: pointer;
}

.beneficiary.disabled {
  display: none !important;
}

.beneficiary .controls {
  position: relative;
  text-align: left;
  justify-content: flex-start;
}

.beneficiary .controls .button {
  margin: 0;
}

.beneficiary-summary {
  font-size: 1rem;
  padding: 0;
}

.new-beneficiary {
  text-transform: uppercase;
}

.next-step-controls {
  text-align: right;
}

.next-step-controls .button {
  margin-right: 0;
}

.beneficiary .firstname,
.beneficiary .lastname,
.beneficiary .company {
  font-weight: bold;
}

.beneficiary .address,
.beneficiary .phone_mobile {
  display: block;
}

.beneficiary .account {
  font-style: italic;
}

.payment-card-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.payment-card {
  width: 200px;
  height: 110px;
  padding: 15px;
  border: 1px solid #bbb;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  margin: 0 30px 30px 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  transition: all 300ms;
  position: relative;
}

.payment-card:before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 21px;
  height: 21px;
  border: 2px solid #bbb;
  border-radius: 50%;
  box-sizing: border-box;
}

.payment-card:after {
  content: "";
  position: absolute;
  top: 13px;
  right: 13px;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 300ms;
  background: #66c75a;
  box-sizing: border-box;
}

.payment-card.new-card:after,
.payment-card.new-card:before {
  display: none;
}

a.payment-card {
  color: #646472;
  text-decoration: none;
}

.payment-card,
.payment-card.unchosen {
  filter: grayscale(100%);
  opacity: 0.9;
}

.payment-card.chosen,
.payment-card:hover {
  border: 1px solid #66c75a;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  filter: grayscale(0);
  opacity: 1;
}

.payment-card.chosen {
  transform: scale(1.05);
}

.payment-card.chosen:after {
  transform: scale(1);
}

.payment-card.new-card {
  border: 1px solid #ddd;
  width: 110px;
  transform: scale(0.9);
}

.payment-card.new-card .card-name {
  text-transform: uppercase;
}

.payment-card.new-card .card-logo {
  text-align: center;
}

.payment-card .card-logo {
  width: 100%;
  height: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  text-align: left;
}

.payment-card .card-logo img {
  max-width: 100%;
  max-height: 100%;
}

.payment-card .card-name,
.payment-card .card-number {
  font-size: 0.8rem;
  text-align: center;
}

.payment-card-addons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
  font-size: 0.9rem;
  margin-bottom: -30px;
}

.payment-card-addons img {
  max-height: 35px;
  margin-left: 15px;
}

#new-card-wrapper {
  display: none;
}

#new-card-wrapper.show-me {
  display: block;
}

.monthpicker {
  position: relative;
  overflow: visible;
}

.monthpicker .monthpicker-overly {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.monthpicker .monthpicker-widget {
  position: absolute;
  top: 100%;
  margin-top: -8px;
  left: 0;
  right: 0;
  background: #f5f5f5;
  padding: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.monthpicker .monthpicker-widget .controls {
  text-align: right;
}

.monthpicker .monthpicker-widget .controls .button {
  margin: 0;
}

.content-box-wrapper .button {
  min-width: 150px;
}

.content-box-wrapper,
.transfer-data-details {
  background: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
}

.content-box-wrapper h1:first-child,
.PAGE .content-box-wrapper h1:first-child {
  margin-top: 0;
  margin-bottom: 20px !important;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: normal;
}

.content-box-wrapper h4 {
  font-size: 1.2rem;
  margin-bottom: 1em;
}

.input-combo {
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.input-combo > div {
  padding-right: 0 !important;
}

.input-combo > div.input-arrow {
  width: 50px;
  max-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.input-combo > div.input-arrow img {
  width: 26px;
}

.input-wrapper.unit-style input {
  padding-right: 60px;
}

.input-wrapper .unit-label {
  position: absolute;
  top: 0;
  right: 10px;
  padding: 10px;
  width: auto;
  max-width: 60px;
  height: 50px;
  box-sizing: border-box;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rodo-checkboxes-wrapper {
  margin-top: 1em;
}

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

.content-box-wrapper .exchange-rate-wrapper {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #31313f;
  letter-spacing: 1px;
}

.content-box-wrapper .content-box-section {
  padding-bottom: 30px;
  border-bottom: 1px solid #bbb;
}

.content-box-wrapper .next-step-controls {
  margin-top: 0;
  border: 0;
  margin-bottom: -10px;
}

.submit-controls-wrapper {
  text-align: right;
  padding-top: 20px;
}

.submit-controls-wrapper .button:last-child {
  margin-right: 0;
}

.register-message-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.register-message-box .loader {
  border: 6px solid #f3f3f3;
  /* Light grey */
  border-top: 6px solid #0c883e;
  /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

.register-message-box .message-box-icon {
  width: 60px;
}

.register-message-box .message-box-content {
  flex: 1;
  letter-spacing: 1px;
}

.content-box-wrapper .controls {
  text-align: right;
}

.content-box-wrapper .controls .button {
  margin-bottom: 0;
}

.content-box-wrapper .content-box-section .transfer-item2-wrapper {
  margin-bottom: -25px;
}

.content-box-wrapper .transfer-item2 .content-wrapper {
  height: auto;
  padding-bottom: 0;
}

.content-box-wrapper .transfer-item2 .time-descr {
  color: #707070;
}

.content-box-wrapper .transfer-item2 {
  background: #fff;
}

.content-box-wrapper .transfer-item2.selected {
  background: #6ac958;
}

.content-box-wrapper .transfer-item2.selected h3,
.content-box-wrapper .transfer-item2.selected .price,
.content-box-wrapper .transfer-item2.selected .time-descr {
  color: #fff;
}

.content-box-wrapper .transfer-item2.selected .price-box {
  border-top: 1px solid #fff;
}

.content-box-wrapper .transfer-item2.selected .content-wrapper .icon-wrapper .icon svg path {
  fill: #fff !important;
}

.transfer-data-details {
  background: #eee;
  box-shadow: none;
}

.transfer-data-details .transfer-item {
  background: none;
}

.transfer-data-details .transfer-data-exchange-rate {
  padding: 10px 0;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  margin-bottom: 10px;
}

.transfer-data-details table.transfer-summary-table {
  margin: 0 0 20px 0;
}

.transfer-data-details table.transfer-summary-table tr td.key {
  padding-left: 0;
}

.transfer-data-details table.transfer-summary-table tr td.value {
  padding-right: 0;
}

.transfer-data-details .transfer-data-exchange-summary {
  border-top: 1px solid #bbb;
  text-align: right;
}

.login-register-hr-line {
  margin: 20px 0;
  height: 1px;
  width: 100%;
  background: #bbb;
  position: relative;
  overflow: visible;
}

.login-register-hr-line > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  display: block;
  padding: 2px 8px;
  background: #fff;
}

#address-selector ul li {
  cursor: pointer;
  transition: all 300ms;
}

#address-selector ul li:hover {
  color: #444;
  padding-left: 5px;
}

.uk-accordion-title {
  padding: 10px 30px;
  max-width: 600px;
  color: #fff;
  position: relative;
  font-weight: 300;
  background: #08863d;
  background: linear-gradient(to right, #73ba42, #08863d);
  background-image: -webkit-linear-gradient(right, #73ba42 0%, #08863d 100%);
  border: 0;
  border-radius: 24px;
  transition: color 300ms;
  text-decoration: none;
  text-transform: uppercase;
  box-sizing: border-box;
  margin: 0 20px 20px 0;
  cursor: pointer;
  font-size: 1.4rem;
}

.uk-accordion-title:before {
  content: "";
  position: absolute;
  top: 20px;
  right: 15px;
  width: 20px;
  height: 12px;
  padding: 0;
  background: url(graphics/arrow-down.png) no-repeat top center;
  color: white;
  pointer-events: none;
  z-index: 2;
  border-radius: 24px;
  transition: all 300ms;
  -webkit-transition: all 300ms;
}

.uk-accordion-title.uk-active:before {
  transform: rotate(180deg);
}

.uk-accordion-title:hover {
  text-decoration: none !important;
  background: #08863d;
  background: linear-gradient(to right, #08863d, #73ba42);
  background-image: -webkit-linear-gradient(right, #08863d 0%, #73ba42 100%);
}

.uk-accordion-content {
  overflow: hidden;
  padding: 0 10px 20px 10px;
}

.uk-accordion-content .beneficiary {
  cursor: inherit !important;
}

.uk-accordion-content .beneficiary:hover {
  border: 1px solid #b2b2b2 !important;
}

.uk-accordion-content.change-password-wrapper > input {
  display: block;
}

/* ------ dzwoneczek ------- */
.notyfications-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  padding-right: 30px;
}

#notyfications-icon {
  background: #eee;
  border: 1px solid #f5f5f5;
  border-radius: 300px;
  width: 30px;
  height: 30px;
  position: relative;
  margin: 0;
}

#notyfications-icon > a {
  position: absolute;
  top: 5px;
  right: 5px;
  left: 5px;
  bottom: 5px;
  display: block;
  box-sizing: border-box;
  background: url(graphics/ring-bell.png) no-repeat top center;
  background-size: cover;
  -webkit-background-size: cover;
}

#notyfications-icon.empty > a {
  background: url(graphics/bell.png) no-repeat top center;
  background-size: cover;
  -webkit-background-size: cover;
}

#notyfications-icon #notyfications-quantity {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 0.7rem;
  font-weight: bold;
  background: #09863d;
  color: #fff;
  border-radius: 300px;
  height: 20px;
  min-width: 20px;
  text-align: center;
  padding-top: 2px;
  box-sizing: border-box;
  display: block;
}

#notyfications-icon #notyfications.hidden {
  display: block !important;
  /*opacity:0;*/
  max-height: 0;
  min-height: 0;
  padding: 0;
  height: 0;
}

#notyfications-icon #notyfications {
  position: absolute;
  top: 45px;
  right: 0;
  width: 300px;
  background: #fff;
  box-shadow: -2px 2px 15px -5px #000;
  z-index: 999;
  padding: 10px 25px 10px 10px;
  overflow: hidden !important;
  height: auto;
  box-sizing: border-box;
  max-height: 400px;
  min-height: 2.5em;
  transition: max-height 400ms;
  -webkit-transition: max-height 400ms;
}

#notyfications-icon #notyfications p {
  margin: 0;
  font-size: 0.8rem;
}

#notyfications-icon.empty #notyfications p {
  font-weight: bold;
  text-align: center;
}

#notyfications-icon #notyfications .notyfication {
  position: relative;
  padding: 8px 15px 8px 0;
  border-bottom: 1px solid #eee;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

#notyfications-icon #notyfications .notyfication:last-child {
  border: 0;
}

@keyframes display-none {
  0% {
    opacity: 1;
    height: auto;
    padding: 8px 15px 8px 0;
  }
  20% {
    opacity: 0;
    height: auto;
    padding: 8px 15px 8px 0;
  }
  50% {
    opacity: 0;
    height: auto;
    padding: 8px 15px 8px 0;
  }
  100% {
    opacity: 0;
    height: 0;
    padding: 0;
  }
}
#notyfications-icon #notyfications .notyfication.hidden {
  display: block !important;
  animation-name: display-none;
  -webkit-animation-name: display-none;
  animation-duration: 400ms;
  -webkit-animation-duration: 400ms;
  height: 0;
  padding: 0;
  border: 0;
}

#notyfications-icon #notyfications .notyfication > a {
  position: absolute;
  top: 5px;
  right: 0;
  width: 8px;
  height: 8px;
  background: #aaa;
  padding: 2px;
  display: block;
  line-height: 0;
}

#notyfications-icon #notyfications .notyfication > a img {
  width: 100%;
}

/* ------- happy seven ------ */
.happy-seven {
  max-width: 100%;
  padding: 40px;
  background: #fdfdfd;
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
  border-radius: 10px;
  margin-bottom: 2em;
  box-sizing: border-box;
}

.happy-seven h3 {
  margin-top: 0;
}

.happy-seven .button {
  margin: 0;
}

.happy-seven-progress-wrapper {
  width: 100%;
  border: 1px solid #999;
  height: 25px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #eee;
  margin-bottom: 1em;
}

.happy-seven-progress-wrapper label {
  position: absolute;
  top: 0;
  right: 10px;
  color: #333;
}

.happy-seven-progress-wrapper .happy-seven-progress {
  height: 25px;
  background: #6fb842;
  background: linear-gradient(to right, #08863d, #73ba42);
  background-image: -webkit-linear-gradient(right, #399e3f 0%, #85c35b 100%);
  border-radius: 15px 0 0 15px;
  margin-left: -100%;
}

.happy-seven.onscreen .happy-seven-progress-wrapper .happy-seven-progress {
  margin: 0;
  transition: margin 3s;
  transition-delay: 400ms;
}

.add-file-wrapper {
  padding: 1em 0;
  max-width: 100%;
  margin-bottom: 2em;
  padding: 40px;
  background: #fdfdfd;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-sizing: border-box;
}

.add-file-wrapper h3 {
  margin-top: 0;
}

.add-file-wrapper .input-wrapper {
  padding-bottom: 0;
}

.add-file-wrapper .button {
  margin: 0;
  margin-top: 10px;
}

#fileinfo {
  float: left;
  text-align: right;
}

.clear_both {
  clear: both;
}

#progress_info {
  font-size: 10pt;
  padding: 1.5em 0;
}

#progress {
  border: 1px solid #ccc;
  float: left;
  height: 14px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-border-radius: 10px;
  background: -o-linear-gradient(#66cc00, #4b9500);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#66cc00", endColorstr="#4b9500");
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#66cc00', endColorstr='#4b9500')";
  background: linear-gradient(#66cc00, #4b9500);
}

#progress_percent {
  float: right;
}

#upload_response {
  margin-top: 20px;
}

#userdata-data-wrapper h3 {
  margin-top: 0;
}

#userdata-data-wrapper > span.firstname,
#userdata-data-wrapper > span.lastname {
  display: inline-block;
}

.data-item {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.data-item > div {
  flex: 1;
}

.data-item > div.label {
  max-width: 200px;
}

.data-item > div.controls {
  max-width: 100px;
  align-self: center;
}

.data-item > div.controls .button {
  margin: 0;
  height: 40px;
}

.transfer-history-wrapper {
  margin-bottom: 15px;
}

.transfer-history table {
  font-size: 0.85rem;
}

.transfer-history table td.ctrl {
  vertical-align: middle;
}

.transfer-history table td .controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

.transfer-history table td .controls .line {
  height: 10px;
  width: 1px;
  background: #333;
  margin: 0 8px;
}

.transfer-history table td .controls a {
  text-transform: uppercase;
  color: #006cd9;
  font-weight: 500;
  font-size: 0.7rem;
  text-decoration: none;
  transition: all 300ms;
}

.transfer-history table td .controls a:hover {
  color: #66c75a;
}

.transfer-history .controls {
  margin-top: 20px;
}

#cards-wrapper .payment-card,
#cards-wrapper .payment-card:hover {
  filter: grayscale(0);
  opacity: 1;
  border: 1px solid #bbb;
  cursor: default;
  box-shadow: none;
}

#cards-wrapper .payment-card .button {
  height: 26px;
  margin: 0;
  position: absolute;
  bottom: -13px;
  left: 50%;
  font-size: 0.8rem;
  transform: translate(-50%, 0);
}

#cards-wrapper .payment-card:after,
#cards-wrapper .payment-card:before {
  display: none;
}

.beneficiary-account-wrapper .beneficiary {
  cursor: default;
}

.beneficiary-account-wrapper .beneficiary .account,
.beneficiary-account-wrapper .beneficiary .account-name {
  display: inline-block;
}

.beneficiary-account-wrapper .beneficiary .controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 5px;
}

.beneficiary-account-wrapper .beneficiary .controls .button {
  margin: 0;
  margin-right: 5px;
  margin-bottom: 5px;
  height: 26px;
  background: #fff;
  color: #646472;
  font-size: 0.8rem;
  border: 1px solid #ddd;
  text-shadow: none;
  padding: 2px 10px;
}

.beneficiary-account-wrapper .beneficiary .controls .button:last-child {
  margin-right: 0;
}

.beneficiary-account-wrapper .beneficiary .controls .button:hover {
  border: 1px solid #66c75a;
}

.filter-box-wrapper {
  padding: 40px 40px 30px 40px;
  border: 1px solid #006cd9;
  position: relative;
  margin-bottom: 30px;
}

.filter-box-wrapper h4 {
  margin-top: 0;
  padding: 5px;
  position: absolute;
  top: -20px;
  left: 35px;
  background: #fff;
}

.filter-box-wrapper .controls {
  text-align: right;
}

.filter-form-wrapper {
  margin-left: -10px;
  margin-right: -10px;
}

.filter-form-wrapper > div {
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding: 0 10px;
}

.sort-wrapper {
  width: 100%;
  max-width: 400px;
  float: right;
}

#paginator .button {
  height: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
}

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

.contact_data .hours {
  margin-top: 1em;
}

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

.contact-icon {
  display: flex;
  align-items: center;
  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;
}

.reveal-btn > span {
  background: #66c75a;
}

.button-style .phone-hidden .phone-txt,
.button-style .email-hidden .phone-txt {
  display: none;
}

.button-style .button {
  display: none;
}

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

.button-style .phone-hidden .button,
.button-style .email-hidden .button {
  display: flex;
}

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

.email-wrapper.show-email .email {
  display: block;
}

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

.button-style .button.ico-btn .ico,
.email-wrapper .button.ico-btn .ico {
  background: none;
  border-left: 1px solid rgba(102, 199, 90, 0.5);
}

.button-style .button.ico-btn,
.email-wrapper .button.ico-btn {
  min-width: 190px;
}

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

.contact-layout {
  overflow: hidden;
}

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

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

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

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

.form-fields-wrapper {
  overflow: visible;
  margin-top: 10px;
}

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

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

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

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

.form-fields-wrapper textarea {
  min-height: 230px;
}

.contact-data-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.contact-data-section > div {
  flex: 1;
  padding: 0;
  box-sizing: border-box;
  margin-right: 60px;
}

.contact-data-section > div:last-child {
  margin-right: 0;
}

.contact-data-section > div.contact-col {
  color: #fff;
  position: relative;
  width: 35%;
  max-width: 35%;
}

.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 .button-style .button,
.contact-data-section .email-wrapper .button {
  min-width: 180px;
}

.alt-bg {
  background: #eee;
}

#page-delete_account .container {
  padding: 0;
}

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

.mb-accordion-h2 h2.check-onscreen.offscreen-bottom {
  top: 0;
  left: -100px;
  transition: all 1000ms;
}

.mb-accordion-h2 h2.check-onscreen.onscreen {
  left: 0;
  transition-delay: 300ms;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

#CANVAS {
  transition: filter 100ms;
  position: relative;
  z-index: 1;
}

.loading #CANVAS {
  filter: blur(5px);
}

.loading .loading-overlay {
  display: flex;
}

.loading .loading-overlay .loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #0c883e;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hidden.show-me {
  display: block !important;
}

/* select*/
.selected-transfer-wrapper {
  position: relative;
  height: 75px;
  background: #fff;
  z-index: 1;
}

#selected-transfer-item-wrapper {
  height: 75px;
}

.selected-transfer-wrapper > div {
  position: absolute;
  border: 1px solid #bbb;
  border-radius: 4px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 75px;
  box-sizing: border-box;
  transition: height 400ms;
}

.selected-transfer-wrapper.change-transfer-item {
  z-index: 8;
}

.selected-transfer-wrapper.change-transfer-item > div {
  height: 360px;
}

.selected-transfer-wrapper:hover > div,
.selected-transfer-wrapper.change-transfer-item > div {
  border: 1px solid #ddd;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.selected-transfer-wrapper .transfer-item,
.selected-transfer-wrapper .transfer-item:hover {
  border: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
}

.selected-transfer-wrapper .transfer-item {
  height: 70px;
  box-sizing: border-box;
  background: none;
  border-radius: 0;
}

.change-transfer-wrapper .transfer-item:hover {
  background: #ececec;
}

.change-transfer-wrapper {
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  background: #f5f5f5;
}

#selected-transfer-item-wrapper:after {
  transition: all 400ms;
}

.selected-transfer-wrapper.change-transfer-item #selected-transfer-item-wrapper:after {
  transform: rotate(180deg);
}

.calc-mod-wrapper.simple-style .selected-transfer-wrapper > div {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
}

/* niceit-select */
.niceit-select {
  position: relative;
  height: 50px;
  background: #fff;
  z-index: 1;
}

.niceit-select > div {
  position: absolute;
  border: 1px solid #bbb;
  border-radius: 4px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 50px;
  box-sizing: border-box;
  transition: height 400ms;
}

.niceit-select .selected-item {
  height: 50px;
  padding-right: 50px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.niceit-select .selected-item:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url("graphics/rozwin.png");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 300ms;
}

.niceit-select .change-item {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  background: #f5f5f5;
}

.niceit-select .change-item > div > div {
  transition: all 300ms;
}

.niceit-select .change-item > div > div:hover {
  background: #ececec;
}

.niceit-select .selected-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 30px;
  box-sizing: border-box;
}

.niceit-sect.change-select {
  z-index: 8;
}

.niceit-select.change-select > div {
  height: 350px;
}

.elem-count-1 .niceit-select.change-select > div {
  height: 237px;
}

.elem-count-2 .niceit-select.change-select > div {
  height: 317px;
}

.niceit-select.change-select .selected-item:after {
  transform: rotate(180deg);
}

.niceit-select .icon-tile {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 80px;
  box-sizing: border-box;
}

.niceit-select .icon-tile {
  cursor: pointer;
}

.niceit-select .icon-tile .content {
  padding-left: 10px;
}

.niceit-select .icon-tile .icon {
  width: 30px;
  height: 30px;
}

.beneficiary.icon-tile .icon-wrapper {
  min-width: 40px;
}

.ui-datepicker {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2) !important;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 0.9rem !important;
  padding: 5px 10px !important;
  height: 35px !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 6px !important;
  width: 35px;
  height: 35px;
}

.ui-datepicker .ui-datepicker-prev .ui-icon {
  background-image: url(graphics/arrow-left.png);
  background-size: contain;
}

.ui-datepicker .ui-datepicker-next .ui-icon {
  background-image: url(graphics/arrow-right.png);
  background-size: contain;
}

.ui-icon-circle-triangle-w,
.ui-icon-circle-triangle-e {
  background-position: 0 !important;
}

.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover {
  background: none !important;
  border: 0 !important;
}

.ui-datepicker th {
  background: #fff !important;
  font-size: 0.9rem !important;
  color: #646472;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  background: #fff !important;
}

.ui-datepicker table {
  border: 0 !important;
}

.ui-datepicker table tr {
  background: #fff !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
  border: 1px solid #66c75a !important;
}

.window-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.window-overlay .window {
  width: 90vw;
  height: 80vh;
  max-width: 900px;
  max-height: 600px;
  background: #fff;
  z-index: 0;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
}

.window-overlay .window.small {
  max-width: 650px;
  max-height: 350px;
}

.window-overlay .window.medium {
  max-width: 900px;
  max-height: 600px;
}

.window-overlay .window.large {
  max-width: 1200px;
  max-height: 700px;
}

.window-overlay .window .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 80px;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
  overflow-y: auto;
}

.window-overlay .window .content h2:first-child,
.window-overlay .window .content h3:first-child,
.window-overlay .window .content h4:first-child {
  margin-top: 0;
}

.window-overlay .window .controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  padding: 0 40px 0 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.window-overlay .window .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #006cd9;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.window-overlay.show-me {
  display: flex;
}

.info-box-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms;
}

.info-box-overlay.info-visible {
  opacity: 1;
}

.info-box-wrapper {
  display: none;
  width: 90vw;
  max-width: 1200px;
  height: 80vh;
  max-height: 700px;
  position: relative;
}

.info-box-overlay.info-visible .info-box-wrapper {
  display: block;
  animation-name: zoomIn;
  animation-duration: 1s;
}

.info-box {
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: block;
}

.info-box > img {
  display: block;
  margin: 0;
  width: auto;
  max-height: 80vh;
}

.info-box .content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  max-width: 700px;
  text-align: left;
  color: #fff;
  padding: 50px 50px 40px 50px;
  font-size: 1.2rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.info-box .content-wrapper .button {
  text-shadow: none;
}

.info-box .content-wrapper h2,
#START .info-box .content-wrapper h2 {
  margin-top: 0;
  font-size: 3.2rem;
  color: #fff;
  text-align: left;
}

.info-box-wrapper .close-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  box-sizing: border-box;
}

.info-box-wrapper .close-button img {
  width: 100%;
}

#transfer-to-phone-number .window .content {
  bottom: 0;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#transfer-to-phone-number .window .content > div {
  flex: 1;
  border: 1px solid #ddd;
  padding: 20px 0 20px 0;
  border-radius: 5px;
}

#transfer-to-phone-number .window .content p {
  margin-bottom: 0;
}

#transfer-to-phone-number .window .content strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

#transfer-to-phone-number .window .content .tel-number {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #66c75a;
}

#transfer-to-phone-number .window .controls {
  justify-content: center;
  padding-top: 20px;
  position: static;
  padding: 0;
  padding-top: 10px;
}

#transfer-to-phone-number .window .controls .button {
  margin: 0;
}

#recommending-us-window .window .content {
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#recommending-us-window .window .content > div {
  flex: 1;
}

#recommending-us-window .window .content h4 {
  text-align: left;
  margin-bottom: 20px;
}

.client_exists_window .window .content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client_exists_window .window .content,
.client_exists_window .window .content h3 {
  text-align: center;
}

.client_exists_window .window .content h3 {
  font-size: 1.4rem;
  margin-top: 0;
}

.client_exists_window .window .content .tel-number {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #006cd9;
}

.client_exists_window .window .content .alert-sign {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 1em;
}

.client_exists_window .window .controls {
  justify-content: center;
}

.banner-seo-title {
  font-size: 3.2em;
  font-weight: 500;
  color: #fff;
}

.add-interactive-mod-content p {
  font-size: 2.8em;
  margin: 0;
  color: #31313f;
}

.banner-section-wrapper .header-wrapper .h1 {
  color: #fff;
  margin: 0;
}

#START .promotion-card .header-wrapper .h-title {
  color: #31313f;
}

.h2.title-seo {
  color: #31313f;
  margin: 0;
}

.banner-section-content .icon-tile .content p.h3 {
  color: #fff;
  margin-bottom: 10px;
}

.icon-tile .content p.h3,
.opinion-card p.h3 {
  color: #31313f;
}

p.h2.ui-accordion-header {
  font-size: 1rem !important;
}

.blog-date-item .subtitle {
  font-size: 0.8em;
  font-weight: 400;
  display: inline-block;
  background-color: #F2F3F5;
  padding: 10px;
  border-radius: 20px;
  color: #83838e;
}

#page-blog_article .lead-section h1 {
  margin-top: 15px;
}

.mb-steps-header {
  color: #666;
  padding-bottom: 40px;
}

.mb-steps-header h2 {
  text-align: center;
}

.mb-step-footer {
  background: #08863d;
  background: linear-gradient(to right, #08863d, #73ba42);
  padding: 80px 0;
}

.mb-step-footer h2 {
  color: #fff;
}

.mb-step-footer h2 strong {
  font-size: 1.5em;
}

.mb-steps-card {
  background: #ddd url(graphics/bg.jpg);
  margin-top: 100px;
}

.mb-step-wrapper {
  position: relative;
  padding: 100px 0 300px 0;
}

@keyframes swinging {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
.mb-step-wrapper .step-count {
  position: absolute;
  top: -50px;
  left: 10%;
  z-index: 10;
}

.mb-step-wrapper .step-count img {
  transform-origin: 50% 0;
  animation: swinging 4s ease-in-out forwards infinite;
}

.mb-step-wrapper:nth-child(even) .step-count {
  left: 80%;
}

.mb-step-wrapper .step-count:before {
  content: "";
  position: absolute;
  top: -44px;
  left: 50%;
  margin-left: -15px;
  width: 66px;
  height: 71px;
  background: url(graphics/pinezka-red.png) no-repeat center center;
}

.mb-step-wrapper .mb-step {
  background: #fff;
  width: 350px;
  height: 330px;
  position: relative;
  z-index: 2;
  transition: transform 1s;
}

.mb-step-wrapper .mb-step .pinezka {
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -23px;
}

.mb-step-wrapper .mb-step:after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  right: -45px;
  height: 162px;
  background: url(graphics/kartka-cien.png) no-repeat left bottom/contain;
}

.mb-step-wrapper:nth-child(odd) .mb-step {
  left: 20%;
  margin-left: -100px;
  transform: rotate(0deg);
  transform-origin: 50% 20px;
}

.mb-step-wrapper:nth-child(even) .mb-step {
  left: 80%;
  margin-left: -200px;
  transform: rotate(0deg);
  transform-origin: 50% 20px;
}

.mb-step-wrapper:nth-child(odd) .mb-step.onscreen {
  transform: rotate(-10deg);
}

.mb-step-wrapper:nth-child(even) .mb-step.onscreen {
  transform: rotate(10deg);
}

.mb-step-wrapper .mb-step > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.mb-step-wrapper .mb-step .thb {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 130px;
}

.mb-step-wrapper .mb-step .content {
  text-align: center;
  padding: 10px 50px;
  font-size: 0.9em;
  color: #666;
  z-index: 3;
}

.mb-step-wrapper .mb-step .content h3 {
  text-transform: uppercase;
}

.mb-step-wrapper .add-step-text {
  width: 536px;
  height: 300px;
  position: relative;
  background: #ecf7e8;
  color: #666;
  box-sizing: border-box;
  margin-top: -200px;
  z-index: 1;
  transition: transform 1s;
}

.mb-step-wrapper .add-step-text:after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  right: -52px;
  height: 183px;
  background: url(graphics/kartka-cien-green.png) no-repeat left bottom/contain;
}

.mb-step-wrapper .add-step-text:before {
  content: "";
  position: absolute;
  top: -110px;
  left: 3%;
  width: 0;
  transition: width 500ms;
  /*	transition-delay: 300ms;*/
  height: 88px;
  background: url(graphics/step-arrow-right.png) no-repeat center center;
}

.mb-step-wrapper:nth-child(even) .add-step-text:before {
  top: -110px;
  left: auto;
  right: 3%;
  background: url(graphics/step-arrow-left.png) no-repeat center center;
}

.mb-step-wrapper .add-step-text.onscreen:before {
  width: 147px;
}

.mb-step-wrapper .add-step-text > div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.mb-step-wrapper .add-step-text .pinezka {
  position: absolute;
  top: 10px;
  left: 15%;
  margin-left: -25px;
}

.mb-step-wrapper .add-step-text .add-img {
  position: absolute;
  top: 50%;
  left: -120px;
  z-index: 12;
}

.mb-step-wrapper .add-step-text .add-img.mobile {
  display: none;
}

.mb-step-wrapper .add-step-text .add-img2 {
  position: absolute;
  top: 20%;
  left: 90%;
  z-index: 12;
}

.mb-step-wrapper .add-step-text .add-img,
.mb-step-wrapper .add-step-text .add-img2 {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 1s;
  z-index: 1;
}

.mb-step-wrapper .add-step-text.onscreen .add-img,
.mb-step-wrapper .add-step-text.onscreen .add-img2 {
  opacity: 1;
}

.mb-step-wrapper:nth-child(even) .add-step-text .pinezka {
  top: 10px;
  left: 90%;
}

.mb-step-wrapper .add-step-text .content {
  text-align: center;
  padding: 80px 80px;
}

.mb-step-wrapper .add-step-text .content strong:first-child {
  font-size: 1.2em;
  display: block;
}

.mb-step-wrapper:nth-child(odd) .add-step-text {
  left: 40%;
  transform: rotate(-5deg);
  transform-origin: 15% 40px;
}

.mb-step-wrapper:nth-child(odd) .add-step-text.onscreen {
  transform: rotate(5deg);
}

.mb-step-wrapper:nth-child(even) .add-step-text {
  left: 15%;
  transform: rotate(-5deg);
  transform-origin: 80% 40px;
}

.mb-step-wrapper:nth-child(even) .add-step-text.onscreen {
  transform: rotate(-10deg);
}

/*--- typy ---*/
.mb-step-wrapper .add-step-image {
  display: none;
}

.mb-step-wrapper.rejestracja {
  padding: 100px 0 20px 0;
}

.mb-step-wrapper.rejestracja .add-step-image {
  display: block;
  position: relative;
  width: 536px;
  height: 300px;
  box-sizing: border-box;
  margin-top: -160px;
  left: 55%;
  z-index: 1;
  transition: transform 1s;
}

.mb-step-wrapper.rejestracja .add-step-image:before {
  content: "";
  position: absolute;
  top: -110px;
  left: -10%;
  width: 147px;
  transition: width 500ms;
  /*	transition-delay: 300ms;*/
  height: 88px;
  background: url(graphics/step-arrow-right.png) no-repeat center center;
}

.input-wrapper {
  position: relative;
}

.input-wrapper > label[for]:first-child {
  position: absolute;
  top: 25px;
  transform: translate(0, -50%);
  left: 10px;
  line-height: 1;
  display: inline-block;
  padding: 2px;
  background: #fff;
  cursor: text;
  opacity: 0.5;
  z-index: 1;
  transition: all 200ms;
}

.input-wrapper > label[for].active:first-child,
.input-wrapper > label[for].stay-active:first-child {
  top: 0;
  left: 5px;
  opacity: 1;
  font-size: 0.7rem;
}

.h-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.h-inline > * {
  margin: 0;
}

.h-inline > .button {
  height: 38px;
}

.h-inline > .button:after {
  height: 38px;
}

.slick-slide {
  padding: 0 !important;
}

.slick-list {
  margin: 0 !important;
}

.slick-dots {
  bottom: -30px !important;
}

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

.red-alert,
.yellow-alert,
.green-alert {
  padding: 6px 6px 6px 70px;
  border-top: solid 2px;
  border-bottom: solid 2px;
  margin: 15px 0;
  background-size: 30px;
  text-align: left;
  font-size: 0.9rem;
}

.megadropdown .dropdown-content-wrapper {
  overflow: visible;
}

#page-listing_page .card .img-placeholder {
  padding-bottom: 84%;
}

.collapsible-text-wrapper .header h2 {
  text-align: center !important;
  font-size: 2.2rem !important;
  max-width: 100%;
}

.collapsible-text-wrapper .text-wrapper {
  max-width: initial;
  font-size: 14px;
  position: relative;
  height: 130px;
  overflow: hidden;
}
.collapsible-text-wrapper .text-wrapper h2 {
  margin-top: 35px;
  font-size: 1.6rem !important;
}

.collapsible-text-wrapper .text-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80%);
}

.collapsible-text-wrapper .text-wrapper .text {
  transition: height linear 300ms;
}

.collapsible-text-wrapper.active .text-wrapper:after {
  display: none;
}

.collapsible-text-wrapper .controls {
  display: flex;
  justify-content: center;
}

.collapsible-text-wrapper .controls a {
  font-size: 14px;
  color: #888888;
  font-weight: 500;
  margin-top: 15px;
  position: relative;
}

.collapsible-text-wrapper .controls a:hover {
  text-decoration: none;
}

.cb-text_photo.cb-elem-position-left .cb-container .image-wrapper,
.cb-text_photo.cb-elem-position-right .cb-container .image-wrapper {
  border-radius: 0;
}

@keyframes xmas-swinging {
  0% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}
@keyframes snow1 {
  from {
    top: -50%;
    left: 0;
    opacity: 0;
  }
  50% {
    left: 150px;
    opacity: 1;
  }
  to {
    top: 50%;
    opacity: 0;
    left: 0;
  }
}
@keyframes snow2 {
  from {
    top: -50%;
    opacity: 0;
  }
  50% {
    left: 20px;
    opacity: 1;
  }
  to {
    top: 50%;
    opacity: 0;
    left: 0;
  }
}
@keyframes snow3 {
  from {
    top: -50%;
    opacity: 0;
  }
  50% {
    left: -100px;
    opacity: 1;
  }
  to {
    top: 50%;
    opacity: 0;
  }
}
@keyframes bujubuju {
  0% {
    transform: rotate(5deg) translate(-10%, 0);
  }
  50% {
    transform: rotate(-5deg) translate(10%, 0);
  }
  100% {
    transform: rotate(5deg) translate(-10%, 0);
  }
}
.xmas {
  display: none !important;
}

.xmas-style .xmas {
  display: block !important;
}

.xmas-style #CANVAS {
  background-image: url("graphics/xmas/xmas-background2.png");
  background-position: top center;
  background-repeat: repeat;
}

.xmas-style .banner-section-wrapper {
  background-image: url("graphics/xmas/snow-main-bg2.jpg");
  background-size: cover;
  background-position: bottom center;
}

#START.xmas-style #TOP,
.xmas-style #TOP {
  background-color: #31974d;
}

#START.xmas-style #TOP.unsticked {
  background: none;
}

#START.xmas-style #TOP #logo .primary-logo,
.xmas-style #TOP #logo .primary-logo {
  display: none;
}

#START.xmas-style #TOP #logo .secondary-logo,
.xmas-style #TOP #logo .secondary-logo {
  display: block;
}

#START.xmas-style #TOP nav.desktop .nav-button a,
#START.xmas-style #TOP .lang-wrapper a,
#START.xmas-style #TOP .login-buttons .sign-up,
.xmas-style #TOP nav.desktop .nav-button a,
.xmas-style #TOP .lang-wrapper a,
.xmas-style #TOP .login-buttons .sign-up {
  color: #fff;
}

#START.xmas-style #TOP nav.desktop .nav-button a:hover,
#START.xmas-style #TOP nav.desktop .nav-button.urhere a,
#START.xmas-style #TOP .lang-wrapper a:hover,
#START.xmas-style #TOP .lang-wrapper a.urhere,
.xmas-style #TOP nav.desktop .nav-button a:hover,
.xmas-style #TOP nav.desktop .nav-button.urhere a,
.xmas-style #TOP .lang-wrapper a:hover,
.xmas-style #TOP .lang-wrapper a.urhere {
  color: #fff;
}

#START.xmas-style #TOP nav.desktop .nav-button a:hover span,
#START.xmas-style #TOP nav.desktop .nav-button.urhere a span,
#START.xmas-style #TOP .lang-wrapper a:hover,
#START.xmas-style #TOP .lang-wrapper a.urhere,
.xmas-style #TOP nav.desktop .nav-button a:hover span,
.xmas-style #TOP nav.desktop .nav-button.urhere a span,
.xmas-style #TOP .lang-wrapper a:hover,
.xmas-style #TOP .lang-wrapper a.urhere {
  border-bottom: 2px solid #fff;
}

#START.xmas-style #TOP .login-buttons .button,
.xmas-style #TOP .login-buttons .button {
  background: #fff;
  color: #31974d;
}

#START.xmas-style #TOP .login-buttons::after,
#START.xmas-style #TOP .lang-wrapper::after,
.xmas-style #TOP .login-buttons::after,
.xmas-style #TOP .lang-wrapper::after {
  background: #fff;
}

#START.xmas-style .banner-section-wrapper h1,
#START.xmas-style .banner-section-wrapper .text-wrapper,
.xmas-style .banner-section-wrapper h1,
.xmas-style .banner-section-wrapper .text-wrapper {
  color: #fff;
}

.xmas-style .banner-section-wrapper .header-wrapper {
  padding-bottom: 80px;
}

.xmas-style #BANER-CONTENT {
  position: relative;
}

.xmas-style .snow-animation-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.xmas-style .banner-section-wrapper .container {
  position: relative;
  z-index: 2;
}

.xmas-style .snow-animation-wrapper .snow {
  display: block;
  position: absolute;
  top: -50%;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  background-color: none;
  background-position: top center;
  background-repeat: no-repeat;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.xmas-style .snow-animation-wrapper .snow.lay1 {
  background-image: url("graphics/xmas/SNOW-1.png");
  animation-name: snow1;
  animation-duration: 12s;
}

.xmas-style .snow-animation-wrapper .snow.lay2 {
  background-image: url("graphics/xmas/SNOW-2.png");
  animation-name: snow2;
  animation-duration: 6s;
}

.xmas-style .snow-animation-wrapper .snow.lay3 {
  background-image: url("graphics/xmas/SNOW-3.png");
  animation-name: snow3;
  animation-duration: 18s;
}

.xmas-style .santa-uk-pl-wrapper {
  position: absolute;
  width: 680px;
  right: 0;
  overflow: visible;
  z-index: 1;
}

.xmas-style .santa-uk-pl-wrapper .santa-uk {
  position: absolute;
  right: 59%;
  bottom: 0;
  width: 50%;
  height: 600px;
  background-image: url("graphics/xmas/santa-uk.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
}

.xmas-style .santa-uk-pl-wrapper .santa-pl {
  position: absolute;
  right: -22%;
  bottom: 0;
  width: 50%;
  height: 600px;
  background-image: url("graphics/xmas/santa-pl.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}

.xmas-style .reindeers-way {
  padding-bottom: 250px;
  margin-top: -200px;
  text-align: right;
  position: relative;
  z-index: -1;
}

.xmas-style .reindeers-way .reindeer-running {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 5s linear;
  width: 100%;
}

.xmas-style .reindeers-way .reindeer-running img {
  height: 100%;
}

.xmas-style .reindeers-way.check-onscreen .reindeer-running {
  right: 100%;
}

.xmas-style .reindeers-way.check-onscreen.onscreen .reindeer-running {
  right: -100%;
}

.xmas-style .page-section .container {
  position: relative;
}

.xmas-style .santa-bujubuju {
  position: absolute;
  bottom: -150px;
  right: 10px;
}

.xmas-style .santa-bujubuju {
  position: absolute;
  bottom: -240px;
  right: 10%;
  width: 25%;
  animation-name: bujubuju;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform-origin: 50% 0;
}

.xmas-style .santa-akuku {
  position: absolute;
  bottom: 50%;
  transform: translate(0, 50%);
  left: 57px;
  width: 100px;
  z-index: 1;
}

.xmas-style .santa-sit {
  position: absolute;
  bottom: 0;
  transform: translate(0, 40%);
  right: 0;
  width: auto;
  height: 600px;
  z-index: 1;
}

.xmas-style .relative {
  position: relative;
}

.xmas-style .xmas-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -2px;
  background-image: url("graphics/xmas/snow-main-bg.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.xmas-style #BOTTOM,
.xmas-style #SYSTEM-FOOT {
  background: #fff;
}

.xmas-style .santa-laptop {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: auto;
  height: 390px;
  z-index: 1;
}

@media screen and (max-width: 1600px) {
  .xmas-style .santa-uk-pl-wrapper .santa-uk,
  .xmas-style .santa-uk-pl-wrapper .santa-pl {
    height: 450px;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-uk {
    right: 50%;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-pl {
    right: -13%;
  }
}
@media screen and (max-width: 1367px) {
  .xmas-style .santa-uk-pl-wrapper .santa-uk,
  .xmas-style .santa-uk-pl-wrapper .santa-pl {
    height: 360px;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-uk {
    right: 50%;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-pl {
    right: -9%;
  }
  .xmas-style .santa-uk-pl-wrapper {
    width: 620px;
  }
  .xmas-style .banner-section-content .calc-mod-wrapper {
    width: 400px;
    right: 80px;
    padding: 30px;
  }
  .xmas-style .banner-section-wrapper .header-wrapper,
  .xmas-style .banner-section-content .block-wrapper {
    padding-right: 620px;
  }
  .xmas-style .banner-section-wrapper {
    padding-top: 220px;
  }
  .xmas-style .banner-section-wrapper .header-wrapper {
    padding-bottom: 40px;
  }
  .xmas-style .santa-akuku {
    left: 27px;
  }
  .xmas-style .santa-sit {
    height: 380px;
  }
  .xmas-style .santa-laptop {
    height: 270px;
  }
}
@media screen and (max-width: 1200px) {
  .xmas-style .banner-section-wrapper {
    padding-top: 100px;
  }
  .xmas-style .banner-section-wrapper .header-wrapper,
  .xmas-style .banner-section-content .block-wrapper,
  .xmas-style .banner-section-wrapper .header-wrapper .text-wrapper {
    padding-right: 0;
  }
  .xmas-style .banner-section-wrapper .header-wrapper {
    padding-right: 50%;
  }
  .xmas-style .banner-section-content .block-wrapper .calc-mod-wrapper {
    width: 100%;
    right: -15px;
    max-width: 50%;
  }
  .xmas-style .santa-uk-pl-wrapper {
    width: 50% !important;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-uk {
    bottom: 20px;
    right: 35%;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-pl {
    bottom: 20px;
    right: 24%;
  }
  .xmas-style .reindeers-way {
    padding-bottom: 160px;
    margin-top: -120px;
  }
  .xmas-style .santa-bujubuju {
    width: 15%;
    bottom: -165px;
  }
  .xmas-style .santa-laptop {
    right: 0;
    display: none !important;
  }
  .xmas-style .santa-sit {
    height: 220px;
  }
  .xmas-style .santa-akuku {
    width: 76px;
  }
}
@media screen and (max-width: 900px) {
  .xmas-style .banner-section-wrapper .header-wrapper {
    padding-right: 0;
  }
  .xmas-style .banner-section-wrapper .header-wrapper {
    padding-bottom: 170px;
  }
  .xmas-style .santa-akuku {
    display: none !important;
  }
}
@media screen and (max-width: 700px) {
  .xmas-style .banner-section-wrapper .header-wrapper {
    padding-bottom: 30px;
  }
  .xmas-style .banner-section-content .block-wrapper .calc-mod-wrapper {
    max-width: 100%;
    right: 0;
  }
  .xmas-style .santa-uk-pl-wrapper {
    width: 200px !important;
    bottom: 0;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-uk,
  .xmas-style .santa-uk-pl-wrapper .santa-pl {
    height: 180px;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-uk {
    bottom: 0px;
    right: 0%;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-pl {
    bottom: 0px;
    right: -20%;
  }
  .xmas-style .banner-section-content .block-wrapper > div.columns {
    padding-right: 80px;
  }
  .xmas-style .reindeers-way {
    display: none !important;
  }
  .xmas-style .santa-bujubuju {
    width: 16%;
    bottom: -75px;
  }
  .xmas-style .santa-sit {
    height: 120px;
    right: -10px;
  }
}
@media screen and (max-width: 450px) {
  .xmas-style .santa-uk-pl-wrapper {
    bottom: -75px;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-uk,
  .xmas-style .santa-uk-pl-wrapper .santa-pl {
    height: 100px;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-pl {
    right: 0;
  }
  .xmas-style .santa-uk-pl-wrapper .santa-uk {
    right: -8%;
  }
  .xmas-style .banner-section-content .block-wrapper > div.columns {
    padding-right: 0;
  }
}
.banner-section-wrapper .header-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}
.banner-section-wrapper .header-wrapper h1 {
  color: #fff;
}
.banner-section-wrapper .header-wrapper .text-wrapper {
  color: #fff;
}
.banner-section-wrapper .header-wrapper em {
  font-style: normal;
  color: rgb(123, 206, 90);
  font-size: 4rem;
  text-transform: uppercase;
}
.banner-section-wrapper .header-wrapper .header {
  padding-bottom: 0;
}

#transfer-to-post-mail .content {
  bottom: 0px;
}

#transfer-to-post-mail .controls {
  justify-content: center;
  position: static;
}

#BANER-CONTENT {
  position: relative;
}
#BANER-CONTENT .banner-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(22, 42, 63, 0.4);
}

.banner-section-content .block-wrapper .text-wrapper {
  z-index: 1;
  color: #fff;
}

.banner-section-wrapper {
  position: relative;
  overflow: hidden;
}

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

.security-tile .subtitle {
  margin-top: 1em;
}

.security-tile .tile {
  box-shadow: 0 0 10px rgba(34, 34, 34, 0.2);
  padding: 30px;
  min-height: 8em;
  border-radius: 4px;
}
.security-tile .tile .content {
  padding-left: 0;
}
.security-tile .tile .content h3 {
  padding-right: 25%;
  margin-bottom: 2em;
}
.security-tile .tile .image-wrapper {
  position: absolute;
  top: 20px;
  right: 30px;
}
.security-tile .tile img {
  max-height: 70px;
  max-width: 115px;
}

.hero-landing-page {
  margin-top: -200px;
  padding-top: 10px;
}

.hero-landing-module {
  background-image: url("graphics/Hero.png");
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 300px;
  padding-bottom: 150px;
}
.hero-landing-module .container.alt {
  display: flex;
}

.hero-landing-tile {
  display: flex;
}

.hero-landing-tile .calc-mod-wrapper {
  padding: 25px;
}

.hero-landing-tile .calc-mod-wrapper h4 {
  display: none;
}

.hero-landing-wrapper {
  max-width: 1110px;
  padding-right: 125px;
  padding-bottom: 50px;
}
.hero-landing-wrapper .header {
  padding-bottom: 30px;
}
.hero-landing-wrapper h1 {
  font-size: 2.5rem !important;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0 !important;
  font-weight: 400 !important;
}
.hero-landing-wrapper h1 em {
  color: #7BCE5A;
  font-style: normal;
}
.hero-landing-wrapper span {
  padding-top: 32px;
}
.hero-landing-wrapper span,
.hero-landing-wrapper h3 {
  color: #fff;
  max-width: 750px;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.hero-landing-wrapper span em,
.hero-landing-wrapper h3 em {
  color: #7BCE5A;
  font-style: normal;
}
.hero-landing-wrapper .content {
  margin-bottom: 0;
  padding-left: 15px;
}
.hero-landing-wrapper .tile {
  display: flex;
  align-items: center;
}
.hero-landing-wrapper .tile .image-wrapper img {
  width: 35px;
  height: 35px;
}

.singleblock-landing-page > div {
  display: flex;
}
.singleblock-landing-page .tile.sb-tile {
  padding: 0;
  width: 50%;
}
.singleblock-landing-page .content {
  width: 50%;
  padding-left: 50px;
}
.singleblock-landing-page .content p {
  padding: 20px 0 40px 0;
  margin: 0;
}
.singleblock-landing-page .tile .image-wrapper {
  max-width: 100%;
}

.show-on-laptop {
  display: none;
}

.multiblocks-card-landing {
  position: relative;
  padding: 0 175px;
}
.multiblocks-card-landing .card .image img {
  max-width: 250px;
  max-height: 250px;
  margin: 0 auto;
  padding: 15px;
  background-color: #EEEEEE;
  border-radius: 10px;
}
.multiblocks-card-landing .card {
  box-shadow: none;
  border-radius: 0;
}
.multiblocks-card-landing .card .content {
  max-width: 260px;
  text-align: center;
  margin: 0 auto;
}
.multiblocks-card-landing .header h2 {
  max-width: inherit;
  text-align: center;
}

.multiblocks-card-landing::before {
  position: absolute;
  content: "";
  top: -150px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("graphics/plane.png") no-repeat center center;
  background-size: contain;
  z-index: -1;
}

.multiblocks-card-why-worth {
  background-color: #EEEEEE;
  padding: 100px 0 150px 0;
}
.multiblocks-card-why-worth .card {
  box-shadow: none;
}
.multiblocks-card-why-worth .card .image img {
  width: auto;
  padding: 35px;
}
.multiblocks-card-why-worth .content {
  padding: 0 35px 35px 35px;
}
.multiblocks-card-why-worth .header h2 {
  max-width: inherit;
  text-align: center;
}

.singleblock-landing-page.why-option .image-wrapper img {
  background-color: #f2f2f2;
  border-radius: 10px;
}

.singleblock-landing-page.why-option > div {
  flex-direction: row-reverse;
}

.singleblock-landing-page.why-option .content {
  padding-left: 0;
  padding-right: 50px;
}
.singleblock-landing-page.why-option .content > div {
  max-width: 580px;
}
.singleblock-landing-page.why-option .content ul {
  list-style: none;
}
.singleblock-landing-page.why-option .content ul li {
  padding: 10px 0;
  padding-left: 10px;
  position: relative;
}
.singleblock-landing-page.why-option .content ul li::before {
  content: url(graphics/svg/bullet.svg);
  position: absolute;
  left: -22px;
  top: 13px;
  bottom: 0;
  vertical-align: middle;
}

.multiblocks-card-mini .multiblocks-card-mini-wrapper {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  max-width: 800px;
  border-radius: 20px;
}
.multiblocks-card-mini .multiblocks-card-mini-wrapper .header {
  max-width: 250px;
  margin: 0;
  padding: 0;
  padding-right: 20px;
  align-content: center;
}
.multiblocks-card-mini .multiblocks-card-mini-wrapper h2 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}
.multiblocks-card-mini .multiblocks-card-mini-wrapper span {
  font-size: 16px;
  color: #fff;
  padding-top: 10px;
}
.multiblocks-card-mini .columns > div {
  padding: 0 15px 0 15px;
}
.multiblocks-card-mini .card {
  min-height: 8em;
  background-color: rgba(255, 255, 255, 0.25);
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 20px;
  border-radius: 10px;
  width: 215px;
}
.multiblocks-card-mini .card:hover {
  background-color: #fff;
  color: #000;
  /* lub #fff jeśli chcesz odwrócić np. z czarnego na biały */
}
.multiblocks-card-mini .card:hover h3,
.multiblocks-card-mini .card:hover .content,
.multiblocks-card-mini .card:hover a {
  color: #000;
}
.multiblocks-card-mini .card .image img {
  width: 40px;
  height: 40px;
  padding-right: 15px;
}
.multiblocks-card-mini .card .image-wrapper {
  display: inline-flex;
  margin-bottom: 45px;
}
.multiblocks-card-mini .card h3 {
  font-size: 16px;
  color: #fff;
}
.multiblocks-card-mini .card .content {
  border-top: 1px solid #ddd;
  display: flex;
  font-size: 14px;
  padding: 15px 10px 15px 0;
  color: #fff;
  align-items: center;
}
.multiblocks-card-mini .card .content em {
  font-style: normal;
  color: #2F96FF;
  padding-right: 5px;
  font-size: 1.25rem;
}

.multiblocks-card-mini-wrapper.only-one {
  max-width: 525px;
}/*# sourceMappingURL=theme.css.map */