html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.wz-grid {
  width: 100%;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.wz-grid.wz--grid-2 .wz-col {
  width: 100%;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: calc(100% / 2);
  box-sizing: border-box;
  float: left;
  clear: none;
}
.wz-grid.wz--grid-2 .wz-col:nth-child(2n) {
  margin-right: 0;
}
.wz-grid.wz--grid-2m .wz-col {
  width: 100%;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: calc((100% - 16px * (2 - 1)) / 2);
  margin-right: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
  float: left;
  clear: none;
}
.wz-grid.wz--grid-2m .wz-col:nth-child(2n) {
  margin-right: 0;
}
.wz-grid.wz--grid-3 .wz-col {
  width: 100%;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: calc(100% / 3);
  box-sizing: border-box;
  float: left;
  clear: none;
}
.wz-grid.wz--grid-3 .wz-col:nth-child(3n) {
  margin-right: 0;
}
.wz-grid.wz--grid-3m .wz-col {
  width: 100%;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: calc((100% - 16px * (3 - 1)) / 3);
  margin-right: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
  float: left;
  clear: none;
}
.wz-grid.wz--grid-3m .wz-col:nth-child(3n) {
  margin-right: 0;
}
.wz-grid.wz--grid-4 .wz-col {
  width: 100%;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: calc((100% - 16px * (4 - 1)) / 4);
  margin-right: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
  float: left;
  clear: none;
}
.wz-grid.wz--grid-4 .wz-col:nth-child(4n) {
  margin-right: 0;
}
.wz-grid.wz--grid-5 .wz-col {
  width: 100%;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: calc(100% / 5);
  box-sizing: border-box;
  float: left;
  clear: none;
}
.wz-grid.wz--grid-5 .wz-col:nth-child(5n) {
  margin-right: 0;
}
.wz-grid:after {
  content: "";
  display: block;
  clear: both;
}

.wz--animate {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.wz--animate.wz--fadeIn {
  -webkit-animation-name: wz--fadeIn;
  -moz-animation-name: wz--fadeIn;
  -o-animation-name: wz--fadeIn;
  animation-name: wz--fadeIn;
}
.wz--animate.wz--fadeInUp {
  -webkit-animation-name: wz--fadeInUp;
  -moz-animation-name: wz--fadeInUp;
  -o-animation-name: wz--fadeInUp;
  animation-name: wz--fadeInUp;
}
.wz--animate.wz--fadeInDown {
  -webkit-animation-name: wz--fadeInDown;
  -moz-animation-name: wz--fadeInDown;
  -o-animation-name: wz--fadeInDown;
  animation-name: wz--fadeInDown;
}
.wz--animate.wz--fadeInLeft {
  -webkit-animation-name: wz--fadeInLeft;
  -moz-animation-name: wz--fadeInLeft;
  -o-animation-name: wz--fadeInLeft;
  animation-name: wz--fadeInLeft;
}
.wz--animate.wz--fadeInRight {
  -webkit-animation-name: wz--fadeInRight;
  -moz-animation-name: wz--fadeInRight;
  -o-animation-name: wz--fadeInRight;
  animation-name: wz--fadeInRight;
}
.wz--animate.wz--pulse {
  -webkit-animation-name: wz--pulse;
  -moz-animation-name: wz--pulse;
  -o-animation-name: wz--pulse;
  animation-name: wz--pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.wz--animate.wz--pulseHover:hover {
  -webkit-animation-name: wz--pulseHover;
  -moz-animation-name: wz--pulseHover;
  -o-animation-name: wz--pulseHover;
  animation-name: wz--pulseHover;
  animation-iteration-count: infinite;
}
.wz--animate.wz--zoomIn {
  -webkit-animation-name: wz--zoomIn;
  animation-name: wz--zoomIn;
}
.wz--animate.wz--bounce {
  -webkit-animation-name: wz--bounce;
  -moz-animation-name: wz--bounce;
  -o-animation-name: wz--bounce;
  animation-name: wz--bounce;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.wz--animate.wz--bounceInUp {
  -webkit-animation-name: wz--bounceInUp;
  -moz-animation-name: wz--bounceInUp;
  -o-animation-name: wz--bounceInUp;
  animation-name: wz--bounceInUp;
}
.wz--animate.wz--spin {
  color: #00BFFF !important;
  animation-name: wz--spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@-webkit-keyframes wz--fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes wz--fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes wz--fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes wz--fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes wz--fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes wz--fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes wz--fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes wz--fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes wz--fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes wz--fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes wz--fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes wz--fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes wz--fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes wz--fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes wz--fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes wz--fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes wz--fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes wz--fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes wz--fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes wz--fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes wz--bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes wz--bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes wz--bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }
  80% {
    -moz-transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes wz--bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }
  80% {
    -o-transform: translateY(10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes wz--bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes wz--pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes wz--pulse {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.05);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes wz--pulse {
  0% {
    -o-transform: scale(1);
  }
  50% {
    -o-transform: scale(1.05);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes wz--pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes wz--pulseHover {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes wz--pulseHover {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes wz--pulseHover {
  0% {
    -o-transform: scale(1);
  }
  50% {
    -o-transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes wz--pulseHover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes wz--zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  50% {
    opacity: 1;
  }
}
@keyframes wz--zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  50% {
    opacity: 1;
  }
}
@keyframes wz--spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes wz--loading {
  from {
    left: -80px;
    width: 30%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
html {
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
}

body {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  min-height: 100% !important;
  background: #FFFFFF;
  color: #4D4D4D;
  font-family: Open Sans, Roboto, Montserrat, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

body, div, section, header, nav, footer, input, select, textarea, button, img, h1, h2, h3, h4, h5, h6, a, p, span {
  box-sizing: border-box;
}

b {
  font-weight: bold;
}

a {
  outline: 0;
}
a:hover, a:active, a:focus, a:visited, a:link {
  text-decoration: none;
  outline: 0 !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}
a:link:active, a:visited:active {
  color: rgb(0, 152.8, 204);
}

button {
  outline: 0 !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  margin: 1em 0;
  padding: 0;
  background: #DDDDDD;
}

.grecaptcha-badge {
  z-index: 99 !important;
}

.wz-form-field {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  padding: 0;
  border-radius: 10px;
  background: #FFF;
}
.wz-form-field.wz--select .wz-select {
  padding-right: 26px;
}
.wz-form-field.wz--select:before {
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  font-weight: 900;
  content: "\f0d7";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  color: #00BFFF;
  z-index: 2;
}
.wz-form-field.wz--select:hover:before, .wz-form-field.wz--select:hover:after {
  border-color: #00BFFF;
}
.wz-form-field.wz--select:hover > .wz-select {
  border-color: #CCC;
}
.wz-form-field.wz--disabled {
  background: #F2F2F2;
}
.wz-form-field.wz--disabled .wz-input, .wz-form-field.wz--disabled .wz-select, .wz-form-field.wz--disabled .wz-textarea, .wz-form-field.wz--disabled .wz-file {
  color: #CCC;
  border: 1px solid #CCC;
  cursor: not-allowed;
}
.wz-form-field.wz--disabled .wz-input:hover, .wz-form-field.wz--disabled .wz-select:hover, .wz-form-field.wz--disabled .wz-textarea:hover, .wz-form-field.wz--disabled .wz-file:hover {
  border: 1px solid #CCC;
}
.wz-form-field.wz--disabled .wz-icon {
  color: #CCC;
}
.wz-form-field.wz--disabled.wz--select:before, .wz-form-field.wz--disabled.wz--select:after {
  display: none;
}
.wz-form-field.wz--icons-info .wz-input:before, .wz-form-field.wz--icons-info .wz-select:before {
  font-family: "Font Awesome 5 Free";
  font-size: 0.85rem;
  font-weight: 900;
  content: "\f059";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translate(0, -50%);
  transition: 0.2s ease-in-out;
  color: #CCC;
  z-index: 2;
}
.wz-form-field.wz--icons-info .wz-input:focus:before, .wz-form-field.wz--icons-info .wz-select:focus:before {
  color: #00BFFF;
}
.wz-form-field.wz--icons-l .wz-input, .wz-form-field.wz--icons-l .wz-select {
  padding-left: 48px;
}
.wz-form-field.wz--icons-l .wz-input:focus ~ .wz-icon, .wz-form-field.wz--icons-l .wz-select:focus ~ .wz-icon {
  color: #00BFFF;
}
.wz-form-field.wz--icons-l .wz-input:focus ~ .wz--valid, .wz-form-field.wz--icons-l .wz-select:focus ~ .wz--valid {
  color: #00C851;
}
.wz-form-field.wz--icons-l .wz-input:focus ~ .wz--invalid, .wz-form-field.wz--icons-l .wz-select:focus ~ .wz--invalid {
  color: #FF4444;
}
.wz-form-field.wz--icons-l .wz-icon {
  left: 0;
}
.wz-form-field.wz--icons-l.wz--valid, .wz-form-field.wz--icons-l.wz--invalid {
  left: unset;
  right: 10px;
}
.wz-form-field.wz--icons-r .wz-input {
  padding-right: 48px;
}
.wz-form-field.wz--icons-r .wz-input:focus ~ .wz-icon {
  color: #00BFFF;
}
.wz-form-field.wz--icons-r .wz-icon {
  right: 0;
}
.wz-form-field.wz--icons-lr .wz-input {
  padding-left: 48px;
  padding-right: 48px;
}
.wz-form-field.wz--icons-lr .wz-input:focus ~ .wz-icon {
  color: #00BFFF;
}
.wz-form-field.wz--icons-lr .wz--left {
  left: 0;
  color: #FF4444;
}
.wz-form-field.wz--icons-lr .wz--right {
  right: 0;
  color: #00C851;
}
.wz-form-field .wz-icon {
  width: 48px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.2s ease-in-out;
  text-align: center;
  z-index: 1;
  color: #333;
}
.wz-form-field .wz-icon-q {
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translate(0, -50%);
  transition: 0.2s ease-in-out;
  text-align: center;
  z-index: 1;
  color: rgb(0, 152.8, 204);
}
.wz-form-field .wz-icon-loader {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  text-align: center;
  z-index: 1;
  color: #00BFFF;
}

.wz-input, .wz-select, .wz-textarea, .wz-file {
  font-family: Open Sans, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: auto;
  display: block;
  position: relative;
  box-sizing: border-box;
  margin: 0;
  padding: 16px;
  color: #4D4D4D;
  background: transparent;
  border: 1px solid #DDD;
  border-radius: 10px;
  outline: none;
  transition: 0.2s ease-in-out;
  z-index: 2;
}
.wz-input:hover, .wz-select:hover, .wz-textarea:hover, .wz-file:hover {
  border-color: #CCC;
}
.wz-input:focus, .wz-select:focus, .wz-textarea:focus, .wz-file:focus {
  border-color: #00BFFF;
  outline: none;
}
.wz-input:focus:hover, .wz-select:focus:hover, .wz-textarea:focus:hover, .wz-file:focus:hover {
  border-color: #00BFFF;
}
.wz-input.wz--valid, .wz-select.wz--valid, .wz-textarea.wz--valid, .wz-file.wz--valid {
  border-color: #00C851;
}
.wz-input.wz--valid:focus, .wz-select.wz--valid:focus, .wz-textarea.wz--valid:focus, .wz-file.wz--valid:focus {
  border-color: #00C851;
  box-shadow: none;
}
.wz-input.wz--valid:focus:hover, .wz-select.wz--valid:focus:hover, .wz-textarea.wz--valid:focus:hover, .wz-file.wz--valid:focus:hover {
  border-color: #00C851;
}
.wz-input.wz--invalid, .wz-select.wz--invalid, .wz-textarea.wz--invalid, .wz-file.wz--invalid {
  border-color: #FF4444;
}
.wz-input.wz--invalid:focus, .wz-select.wz--invalid:focus, .wz-textarea.wz--invalid:focus, .wz-file.wz--invalid:focus {
  border-color: #FF4444;
  box-shadow: none;
}
.wz-input.wz--invalid:focus:hover, .wz-select.wz--invalid:focus:hover, .wz-textarea.wz--invalid:focus:hover, .wz-file.wz--invalid:focus:hover {
  border-color: #FF4444;
}

.wz-form-container {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.wz-form-container:after {
  content: "";
  display: block;
  clear: both;
}
.wz-form-container.wz--center {
  margin-left: auto;
  margin-right: auto;
}
.wz-form-container.wz--sml {
  max-width: 360px;
}
.wz-form-container.wz--med {
  max-width: 720px;
}
.wz-form-container.wz--lrg {
  max-width: 1080px;
}

@media all and (max-width: 767px) {
  .wz-form-field.wz--mobile .wz-icon {
    width: 32px;
    font-size: 0.85rem;
  }
  .wz-form-field.wz--mobile.wz--icons-l .wz-input, .wz-form-field.wz--mobile.wz--icons-l .wz-select {
    padding-left: 32px;
  }
  .wz-form-field.wz--mobile.wz--icons-r .wz-input, .wz-form-field.wz--mobile.wz--icons-r .wz-select {
    padding-right: 32px;
  }
  .wz-form-field.wz--mobile .wz-input, .wz-form-field.wz--mobile .wz-select, .wz-form-field.wz--mobile .wz-textarea, .wz-form-field.wz--mobile .wz-file {
    font-size: 0.85rem;
    padding: 16px;
  }
}
/*
<label class="wz-checkbox">
  Checkbox Lable
  <input type="checkbox" name="" value="">
  <span class="wz-checkmark"></span>
</label>
*/
.wz-checkbox {
  width: 100%;
  height: 25px;
  line-height: 25px;
  display: block;
  position: relative;
  padding-left: calc(25px + 25px);
  box-sizing: border-box;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #4D4D4D;
}
.wz-checkbox input {
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 6px;
  opacity: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}
.wz-checkbox input:checked ~ .wz-checkmark {
  background: #00BFFF;
}
.wz-checkbox input:checked ~ .wz-checkmark:after {
  display: block;
}
.wz-checkbox:hover input ~ .wz-checkmark {
  background: #CCC;
}
.wz-checkbox:hover input:checked ~ .wz-checkmark {
  background: #00BFFF;
}
.wz-checkbox .wz-checkmark:after {
  width: 5px;
  height: 10px;
  left: 9px;
  top: 5px;
  border: solid #FFF;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.wz-checkmark {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  left: 0;
  background: #DDD;
  z-index: 2;
}
.wz-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/*
*/
.wz-pill {
  display: inline-block;
  position: relative;
}
.wz-pill input[type=checkbox] {
  position: absolute;
  top: 9px;
  left: 10px;
  opacity: 0;
  padding: 0;
}
.wz-pill input[type=checkbox]:checked + label {
  background: #000;
}
.wz-pill input[type=checkbox]:checked + label:after {
  background: #00BFFF;
  left: 1.25rem;
}
.wz-pill input[type=checkbox]:disabled + label {
  background: #000;
}
.wz-pill input[type=checkbox]:disabled:hover {
  cursor: not-allowed;
}
.wz-pill label {
  width: 2.6rem;
  height: 1.6rem;
  display: block;
  position: relative;
  background: #DDDDDD;
  color: transparent;
  -webkit-border-radius: 1.6rem;
  -moz-border-radius: 1.6rem;
  border-radius: 1.6rem;
  transition: 0.2s ease;
  cursor: pointer;
}
.wz-pill label:after {
  width: 1.05rem;
  height: 1.1rem;
  display: block;
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  content: "";
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: white;
  transition: 0.2s ease;
}

/*
<label class="wz-switch">
  <input type="checkbox">
  <span class="wz-switch-slider"></span>
</label>
*/
.wz-switch {
  width: 60px;
  height: 34px;
  display: inline-block;
  position: relative;
}
.wz-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.wz-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CCC;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 34px;
}
.wz-switch-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
}

.wz-switch input:checked + .wz-switch-slider {
  background-color: #2196F3;
}
.wz-switch input:focus + .wz-switch-slider {
  box-shadow: 0 0 1px #2196F3;
}
.wz-switch input:checked + .wz-switch-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.wz-label {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  font-family: Open Sans, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: normal;
  text-transform: none;
  margin: 0 0 12px;
  padding: 0 0;
  box-sizing: border-box;
  transition: 0.2s ease-in-out;
  outline: none;
  color: #4D4D4D;
}

.wz-select {
  background: transparent none repeat scroll 0 0;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.wz-select option {
  padding: 0;
}

.wz-form {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: transparent;
}
.wz-form.wz--form-border {
  border: none;
  border-radius: 0;
}
.wz-form:after {
  content: "";
  display: block;
  clear: both;
}

.wz-spacer {
  width: 100%;
  display: block;
}
.wz-spacer.wz--sml {
  height: 50px;
}
.wz-spacer.wz--med {
  height: 100px;
}
.wz-spacer.wz--lrg {
  height: 200px;
}

.wz-button-parent {
  width: 100%;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

.wz-button {
  width: auto;
  max-width: none;
  height: auto;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 12px;
  font-family: Open Sans;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  border: none;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
  cursor: pointer;
  clear: both;
  z-index: 1;
}
.wz-button .wz--icon {
  margin-right: 6px;
}
.wz-button .wz--icon-right {
  margin-left: 6px;
}
.wz-button.wz--sml {
  width: 100%;
  max-width: 120px;
}
.wz-button.wz--med {
  width: 100%;
  max-width: 240px;
}
.wz-button.wz--lrg {
  width: 100%;
  max-width: 360px;
}
.wz-button.wz--button-theme {
  max-width: 220px;
  display: block;
  font-family: Open Sans, Roboto, Montserrat, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
  color: #4D4D4D;
  background: transparent;
  border: 2px solid #4D4D4D;
  padding: 22px 12px;
  transition: 0.2s ease-in-out;
}
.wz-button.wz--button-theme:hover {
  cursor: pointer;
  background: #4D4D4D;
  color: #00BFFF;
}
.wz-button.wz--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wz-button.wz--corner-right {
  position: absolute;
  top: 0;
  right: 0;
}
.wz-button.wz--back, .wz-button.wz--forward {
  position: absolute;
  top: 0;
  font-family: Open Sans;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 10px 12px;
  color: #FFF;
  background: rgba(0, 0, 0, 0.75);
  border-bottom-right-radius: 5px;
  z-index: 4;
}
.wz-button.wz--back {
  left: 0;
}
.wz-button.wz--forward {
  right: 0;
}
.wz-button.wz--primary {
  background: #00BFFF;
  color: #FFF;
  border: 1px solid #00BFFF;
}
.wz-button.wz--primary:hover {
  background: transparent;
  color: #00BFFF;
  border-color: #00BFFF;
}
.wz-button.wz--inverted {
  background: transparent;
  color: #00BFFF;
  border: 1px solid #00BFFF;
}
.wz-button.wz--inverted:hover {
  background: #00BFFF;
  color: #FFF;
}
.wz-button.wz--secondary {
  background: rgb(0, 152.8, 204);
  color: #FFF;
  border: 1px solid rgb(0, 152.8, 204);
}
.wz-button.wz--secondary:hover {
  background: transparent;
  color: rgb(0, 152.8, 204);
  border-color: rgb(0, 152.8, 204);
}
.wz-button.wz--success {
  background: #00C851;
  color: #FFF;
  border: 1px solid #00C851;
}
.wz-button.wz--success:hover {
  background: transparent;
  color: #00C851;
  border-color: #00C851;
}
.wz-button.wz--black {
  background: #1A1A1A;
  color: #FFF;
  border: 1px solid #1A1A1A;
}
.wz-button.wz--black:hover {
  background: transparent;
  color: #00BFFF;
  border-color: #00BFFF;
}
.wz-button.wz--gray {
  background: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #EEE;
}
.wz-button.wz--gray:hover {
  background: transparent;
  color: #00BFFF;
  border-color: #00BFFF;
}
.wz-button.wz--dark-gray {
  background: #EEE;
  color: #4D4D4D;
  border: 1px solid #CCC;
}
.wz-button.wz--dark-gray:hover {
  background: transparent;
  color: #00BFFF;
  border-color: #00BFFF;
}
.wz-button.wz--error {
  background: #FF4444;
  color: #FFF;
  border: 1px solid #FF4444;
}
.wz-button.wz--error:hover {
  background: transparent;
  color: #FF4444;
}
.wz-button.wz--pill {
  max-width: 120px;
  font-family: Open Sans;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px;
  border-radius: 20px;
}
.wz-button.wz--pill:hover {
  background: #1A1A1A;
}
.wz-button.wz--delete {
  max-width: 160px;
  margin: 0 auto 24px;
  padding: 8px;
  background: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #DDD;
  border-radius: 2px;
}
.wz-button.wz--delete:hover {
  background: #DDD;
}
.wz-button.wz--disabled {
  cursor: not-allowed;
  background: #DDD;
  color: #AAA;
  border: 1px solid #DDD;
}
.wz-button.wz--disabled .wz--icon {
  color: #AAA;
}
.wz-button.wz--disabled:hover {
  background: #DDD;
  color: #AAA;
  border-color: #DDD;
}
.wz-button.wz--social {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 1.25rem;
  text-align: center;
  margin-right: 12px;
  padding: 0;
  background: #00BFFF;
  color: #FFF;
  border-radius: 100%;
}
.wz-button.wz--social:hover {
  background: rgb(0, 152.8, 204);
}
.wz-button.wz--social:last-child {
  margin: 0;
}

.wz-shape-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wz-shape-wave-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}
.wz-shape-wave-top .shape-fill {
  fill: #FFFFFF;
}

.wz-shape-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.wz-shape-wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}
.wz-shape-wave-bottom .shape-fill {
  fill: #FFFFFF;
}

.wz-shape-arrow-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wz-shape-arrow-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 32px;
}
.wz-shape-arrow-bottom .shape-fill {
  fill: #E0DBC9;
}

.wz-title {
  position: relative;
  font-family: Open Sans, Roboto, Montserrat, Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: normal;
}
.wz-title.wz--h1 {
  font-size: 3rem;
}
.wz-title.wz--h2 {
  font-size: 2.5rem;
}
.wz-title.wz--h3 {
  font-size: 2rem;
}
.wz-title.wz--h4 {
  font-size: 1.5rem;
}
.wz-title.wz--h5 {
  font-size: 1.25rem;
}
.wz-title.wz--h6 {
  font-size: 1rem;
}

@media all and (max-width: 767px) {
  .wz-title.wz--mobile.wz--h1 {
    font-size: 2.5rem;
  }
  .wz-title.wz--mobile.wz--h2 {
    font-size: 2rem;
  }
  .wz-title.wz--mobile.wz--h3 {
    font-size: 1.5rem;
  }
  .wz-title.wz--mobile.wz--h4 {
    font-size: 1.25rem;
  }
  .wz-title.wz--mobile.wz--h5 {
    font-size: 1rem;
  }
  .wz-title.wz--mobile.wz--h6 {
    font-size: 0.875rem;
  }
}
.wz-image-parent {
  width: auto;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}
.wz-image-parent.wz--image-16 {
  width: 16px;
  height: 16px;
}
.wz-image-parent.wz--image-24 {
  width: 24px;
  height: 24px;
}
.wz-image-parent.wz--image-36 {
  width: 36px;
  height: 36px;
}
.wz-image-parent.wz--image-48 {
  width: 48px;
  height: 48px;
}
.wz-image-parent.wz--image-icon {
  width: 48px;
  height: 48px;
}
.wz-image-parent.wz--image-sml {
  width: 80px;
  height: 80px;
}
.wz-image-parent.wz--image-med {
  width: 120px;
  height: 120px;
}
.wz-image-parent.wz--image-nrm {
  width: 180px;
  height: 180px;
}
.wz-image-parent.wz--image-lrg {
  width: 320px;
  height: 320px;
}
.wz-image-parent.wz--image-full {
  width: 100%;
  height: 320px;
}
.wz-image-parent.wz--round {
  border-radius: 100%;
}
.wz-image-parent img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.wz-image-parent img:hover + .wz---cover {
  opacity: 1;
}
.wz-image-parent:after {
  content: "";
  display: block;
  clear: both;
}
.wz-image-parent .wz--cover {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  z-index: 2;
  transition: 0.2s ease-in-out;
}
.wz-image-parent .wz--cover i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  color: #FFF;
  opacity: 0.2;
}
.wz-image-parent .wz--cover p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Ubuntu, Open Sans;
  font-weight: 700;
  white-space: nowrap;
  color: #FFF;
}
.wz-image-parent .wz--cover:hover {
  opacity: 1;
}
.wz-image-parent:hover > .wz---cover {
  opacity: 1;
}

@media all and (max-width: 359px) {
  .wz-image-parent.wz--image-lrg {
    width: 280px;
    height: 280px;
  }
}
.wz-ul.wz--disc li {
  list-style: disc;
}

.wz-loader {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100vh;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
}

.wz-loader-inner {
  width: auto;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}

.wz-loader-center {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
  background: none;
}

.wz-loader-spinner-image {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
  background: none;
}
.wz-loader-spinner-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}

.wz-window-loader {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
}

.wz-window-loader-content {
  width: auto;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
}

.wz-window-loader-bar-img {
  width: 100%;
  max-width: 288px;
  height: auto;
  position: relative;
  display: block;
  margin: 0 0 20px;
  padding: 0;
}

.wz-window-loader-bar {
  width: 100%;
  max-width: none;
  height: 4px;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #EEE;
}
.wz-window-loader-bar:before {
  content: "";
  width: 100%;
  max-width: 160px;
  height: 100%;
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  left: -80px;
  background-color: #00BFFF;
  animation: wz--loading 1.2s linear infinite;
}

.wz-loader-spinner-dots {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spinner-dots {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.wz-loader-spinner-dots > div {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 88px;
  animation: spinner-dots 1s cubic-bezier(0.3, 0, 0.7, 1) infinite;
}

.wz-loader-spinner-dots > div:nth-of-type(4n + 1) {
  background: #00BFFF;
}

.wz-loader-spinner-dots > div:nth-of-type(4n + 2) {
  background: rgb(0, 171.9, 229.5);
}

.wz-loader-spinner-dots > div:nth-of-type(4n + 3) {
  background: rgb(0, 152.8, 204);
}

.wz-loader-spinner-dots > div:nth-of-type(4n) {
  background: rgb(0, 114.6, 153);
}

.wz-loader-spinner-dots > div:nth-of-type(4n + 1) {
  left: 28px;
  animation-delay: -0.375s;
}

.wz-loader-spinner-dots > div:nth-of-type(4n + 2) {
  left: 68px;
  animation-delay: -0.25s;
}

.wz-loader-spinner-dots > div:nth-of-type(4n + 3) {
  left: 108px;
  animation-delay: -0.125s;
}

.wz-loader-spinner-dots > div:nth-of-type(4n + 4) {
  left: 148px;
  animation-delay: 0s;
}

.wz-loader-spinner-dots div {
  box-sizing: content-box;
}

.wz-notice {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 12px;
  font-family: Open Sans;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2rem;
  text-align: center;
}
.wz-notice i, .wz-notice span {
  margin-right: 8px;
}
.wz-notice.wz--success {
  background: #00C851;
  color: #007E33;
}
.wz-notice.wz--error {
  background: #FF4444;
  color: #FFF;
}
.wz-notice.wz--error a {
  display: block;
  max-width: 100px;
  font-size: 0.75rem;
  margin: 8px auto 0;
  padding: 4px;
  background: rgb(195.5, 0, 0);
  color: #FFF;
}
.wz-notice.wz--warning {
  background: #FFE680;
  color: #665200;
}

.wz-table {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: table;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
}
.wz-table.wz--center, .wz-table .wz--center {
  margin: 0 auto;
}
.wz-table.wz--padding, .wz-table .wz--padding {
  padding: 8px;
}
.wz-table.wz--bold, .wz-table .wz--bold {
  font-weight: 800;
}
.wz-table.wz--text-center, .wz-table .wz--text-center {
  text-align: center;
}
.wz-table.wz--text-left, .wz-table .wz--text-left {
  text-align: left;
}
.wz-table.wz--text-right, .wz-table .wz--text-right {
  text-align: right;
}
.wz-table.wz--invert, .wz-table .wz--invert {
  color: #FFF;
  background: #00BFFF;
}
.wz-table.wz--border {
  border: 1px solid #EEEEEE;
  -webkit-box-shadow: 0 0 10px #DDD;
  -moz-box-shadow: 0 0 10px #DDD;
  box-shadow: 0 0 10px #DDD;
}
.wz-table .wz--image {
  width: 48px;
  height: 48px;
  display: block;
}
.wz-table .wz--disabled {
  color: #BBB;
  cursor: not-allowed;
}
.wz-table .wz--underline {
  text-decoration: underline;
}
.wz-table .wz--icon {
  margin-right: 4px;
}
.wz-table .wz--checkbox {
  width: 25px;
  margin: 0 auto;
  padding: 0;
}

.wz-tr {
  display: table-row;
}
.wz-tr.wz--padding {
  padding: 0 16px;
}
.wz-tr.wz--alt {
  background: #FFF;
}
.wz-tr.wz--alt:nth-child(even) {
  background: #F9F9F9;
}

.wz-th {
  display: table-cell;
  vertical-align: middle;
  padding: 12px 8px;
  background: #00BFFF;
  color: #FFF;
}

.wz-td {
  display: table-cell;
  vertical-align: middle;
}
.wz-td.wz--padding {
  padding: 12px 8px;
}
.wz-td .wz--link {
  display: inline-block;
  color: #4D4D4D;
  transition: 0.2s ease-in-out;
}
.wz-td .wz--link:hover {
  cursor: pointer;
  color: #00BFFF;
}

.wz-text {
  display: block;
  position: relative;
  font-family: Open Sans, Roboto, Montserrat, Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: normal;
  z-index: 2;
}

.wz-link {
  display: inline-block;
  transition: 0.2s ease-in-out;
}
.wz-link:hover {
  cursor: pointer;
  color: #CCC;
}
.wz-link.wz--link-underline {
  text-decoration: underline;
}

.wz-breadcrumbs {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  font-family: Open Sans;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: left;
  background: transparent;
  color: #4D4D4D;
  transition: 0.2s ease-in-out;
}
.wz-breadcrumbs .wz--icon {
  margin-right: 4px;
}
.wz-breadcrumbs.wz--center {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.wz-breadcrumbs.wz--light {
  padding: 8px 12px;
  color: #4D4D4D;
  background: #F2F2F2;
}
.wz-breadcrumbs.wz--light .wz-crumb {
  color: #4D4D4D;
}
.wz-breadcrumbs.wz--light .wz-crumb:hover {
  color: #00BFFF;
}
.wz-breadcrumbs.wz--dark {
  padding: 8px 12px;
  color: #FFF;
  background: #1A1A1A;
}
.wz-breadcrumbs.wz--dark .wz-crumb {
  color: #FFF;
}
.wz-breadcrumbs.wz--dark .wz-crumb:hover {
  color: #00BFFF;
}
.wz-breadcrumbs.wz--dark .wz--icon {
  color: #00BFFF;
}
.wz-breadcrumbs.wz--dark .wz--icon:hover {
  color: #00BFFF;
}
.wz-breadcrumbs.wz--margin {
  margin-bottom: 60px;
}
.wz-breadcrumbs .wz-crumb {
  display: inline-block;
  margin: 0 6px 0 0;
  color: #4D4D4D;
  transition: 0.2s ease-in-out;
}
.wz-breadcrumbs .wz-crumb.wz--on {
  color: #CCC;
}
.wz-breadcrumbs .wz-crumb.wz--on:hover {
  color: #CCC;
}
.wz-breadcrumbs .wz-crumb.wz--bg {
  margin-bottom: 6px;
  padding: 6px 8px;
  background: #F2F2F2;
  border-radius: 3px;
}
.wz-breadcrumbs .wz-crumb.wz--bg:hover {
  -webkit-box-shadow: 0 0 8px #DDD;
  -moz-box-shadow: 0 0 8px #DDD;
  box-shadow: 0 0 8px #DDD;
}
.wz-breadcrumbs .wz-crumb.wz--bg i, .wz-breadcrumbs .wz-crumb.wz--bg span {
  margin-right: 4px;
  color: #BBB;
  transition: 0.2s ease-in-out;
}
.wz-breadcrumbs .wz-crumb.wz--bg i:hover, .wz-breadcrumbs .wz-crumb.wz--bg span:hover {
  cursor: pointer;
  color: #FF4444;
}
.wz-breadcrumbs .wz-crumb-divider {
  margin-right: 6px;
}
.wz-breadcrumbs .wz--reset {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  text-decoration: underline;
  margin: 0;
  color: #FF4444;
}

.wz-card {
  border-radius: 10px;
  background: #FFF;
  transition: 0.2s ease-in-out;
}
.wz-card.wz--border {
  border: 1px solid #EEE;
}
.wz-card:hover {
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
}

.wz-modal {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.wz-modal-content {
  width: 80%;
  max-width: 720px;
  height: auto;
  max-height: 90vh;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  overflow: auto;
  background: #FFFFFF;
  color: #000000;
  border: none;
}
.wz-modal-content:after {
  content: "";
  display: block;
  clear: both;
}

.wz-modal-inner {
  padding: 20px;
}

.wz-scroll-container {
  width: auto;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
}

.wz-scroll-inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  overflow-x: hidden;
  overflow-y: scroll;
}
.wz-scroll-inner.wz--left {
  padding: 0 0 0 17px;
}
.wz-scroll-inner.wz--right {
  padding: 0 17px 0 0;
}

.wz-slider-container {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 2;
}
.wz-slider-container:after {
  content: " ";
  display: block;
  clear: both;
}

.wz-slider-inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-x: scroll;
}
.wz-slider-inner:after {
  content: " ";
  display: block;
  clear: both;
}

.wz-slider-list {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.wz-slider-list:after {
  content: " ";
  display: block;
  clear: both;
}

.wz-slider-item {
  width: auto;
  max-width: none;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.wz-slider-item.wz--left {
  float: left;
}
.wz-slider-item.wz--right {
  float: right;
}
.wz-slider-item:after {
  content: " ";
  display: block;
  clear: both;
}

.wz-slide-menu {
  width: 100%;
  max-width: 280px;
  height: 100%;
  position: fixed;
  display: block;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  top: 0;
  background: #000000;
  transition: 0.2s ease-in-out;
  z-index: 999;
}
.wz-slide-menu:after {
  content: "";
  display: block;
  clear: both;
}
.wz-slide-menu.wz--close {
  left: -280px;
}
.wz-slide-menu.wz--open {
  left: 0;
  box-shadow: 3px 0 7px 0 rgba(0, 0, 0, 0.75);
}
.wz-slide-menu .wz-slide-menu-inner, .wz-slide-menu .wz-slide-menu-links {
  min-width: 280px;
}

.wz-slide-menu-inner {
  width: 100%;
  min-width: 280px;
  min-height: 100vh;
  position: relative;
  box-sizing: content-box;
}

.wz-slide-menu-logo {
  width: 100%;
  padding: 12px;
}
.wz-slide-menu-logo:after {
  content: "";
  display: block;
  clear: both;
}
.wz-slide-menu-logo img {
  width: auto;
  height: 32px;
  display: block;
  float: left;
}

.wz-slide-menu-link {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 16px;
  font-family: Open Sans;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2rem;
  color: #FFF;
  border-bottom: 1px solid #1A1A1A;
  transition: 0.2s ease-in-out;
}
.wz-slide-menu-link .wz--up, .wz-slide-menu-link .wz--down, .wz-slide-menu-link .wz--count {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  color: #AAA;
  z-index: 2;
}
.wz-slide-menu-link .wz--down {
  color: #00BFFF;
}
.wz-slide-menu-link .wz--count {
  width: 22px;
  height: 22px;
  line-height: 22px;
  right: 9px;
  font-family: AvenirBold;
  font-size: 0.65rem;
  font-weight: normal;
  text-align: center;
  color: #1A1A1A;
  background: #FFBB33;
  border-radius: 22px;
}
.wz-slide-menu-link .wz--icon {
  margin-right: 4px;
  color: #00BFFF;
}
.wz-slide-menu-link.wz--sub {
  padding-left: 36px;
  background: rgb(38.75, 38.75, 38.75);
}
.wz-slide-menu-link.wz--on {
  color: #666666;
}
.wz-slide-menu-link.wz--on .wz--icon {
  color: rgb(0, 152.8, 204);
}
.wz-slide-menu-link.wz--on:hover {
  color: #666666;
}
.wz-slide-menu-link.wz--disabled {
  color: #4D4D4D;
}
.wz-slide-menu-link.wz--disabled .wz--icon {
  color: #4D4D4D;
}
.wz-slide-menu-link.wz--disabled:hover {
  color: #4D4D4D;
  cursor: not-allowed;
  background: transparent;
}
.wz-slide-menu-link.wz--disabled:hover .wz--icon {
  color: #4D4D4D;
}
.wz-slide-menu-link.wz--open .wz--up {
  display: block;
}
.wz-slide-menu-link.wz--open .wz--down {
  display: none;
}
.wz-slide-menu-link.wz--close .wz--up {
  display: none;
}
.wz-slide-menu-link.wz--close .wz--down {
  display: block;
}
.wz-slide-menu-link.wz--gray {
  color: #BEBEC1;
}
.wz-slide-menu-link:hover {
  color: #AAA;
}
.wz-slide-menu-link.wz--primary {
  background: #00BFFF;
  color: #000;
}
.wz-slide-menu-link.wz--primary .wz--icon {
  color: #000;
}
.wz-slide-menu-link.wz--primary:hover {
  background: rgb(0, 152.8, 204);
}

.wz-slide-menu-cross {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 2;
}
.wz-slide-menu-cross:hover {
  cursor: pointer;
}
.wz-slide-menu-cross:hover span {
  background: #00BFFF;
}
.wz-slide-menu-cross span {
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  background: #FFF;
  opacity: 1;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.wz-slide-menu-cross span:first-child {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.wz-slide-menu-cross span:last-child {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.wz-js-scrollAnimate {
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

@media all and (max-width: 480px) {
  .wz-slide-menu {
    max-width: 280px;
  }
  .wz-slide-menu.wz--close {
    left: -280px;
  }
  .wz-slide-menu .wz-slide-menu-inner, .wz-slide-menu .wz-slide-menu-links {
    min-width: 280px;
  }
}
.wz-toast {
  width: 100%;
  max-width: 360px;
  height: auto;
  position: fixed;
  display: block;
  margin: 0 auto;
  padding: 0;
  left: 16px;
  -webkit-box-shadow: 0 0 8px #000;
  -moz-box-shadow: 0 0 8px #000;
  box-shadow: 0 0 8px #000;
  border-radius: 0;
  z-index: 999;
}
.wz-toast:after {
  content: "";
  display: block;
  clear: both;
}
.wz-toast.wz--t {
  top: 16px;
  bottom: unset;
}
.wz-toast.wz--b {
  bottom: 16px;
  top: unset;
}
.wz-toast.wz--center {
  left: calc(50% - 360px / 2);
}
.wz-toast.wz--notice {
  background: rgba(0, 0, 0, 0.92);
  border: none;
}
.wz-toast.wz--notice .wz-toast-icon {
  color: #008AE6;
}
.wz-toast.wz--notice p {
  color: #FFF;
}
.wz-toast.wz--success {
  background: rgba(0, 0, 0, 0.92);
  border: none;
}
.wz-toast.wz--success .wz-toast-icon {
  color: rgb(46.7633928571, 162.7366071429, 90.7209821429);
}
.wz-toast.wz--success p {
  color: #FFF;
}
.wz-toast.wz--warning {
  background: rgba(0, 0, 0, 0.92);
  border: none;
}
.wz-toast.wz--warning .wz-toast-icon {
  color: #00BFFF;
}
.wz-toast.wz--warning p {
  color: #FFF;
}
.wz-toast.wz--error {
  background: rgba(0, 0, 0, 0.92);
  border: none;
}
.wz-toast.wz--error .wz-toast-icon {
  color: #FF4444;
}
.wz-toast.wz--error p {
  color: #FFF;
}

.wz-toast-icon {
  width: auto;
  max-width: none;
  height: auto;
  position: absolute;
  display: block;
  margin: 0;
  padding: 10px;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  font-size: 1.2rem;
  text-align: center;
  z-index: 2;
}

.wz-toast-content {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 24px 64px 24px 64px;
  text-align: center;
  z-index: 1;
}

.wz-tooltip {
  width: 85%;
  max-width: 280px;
  min-width: 120px;
  height: auto;
  display: block;
  position: absolute;
  box-sizing: border-box;
  margin: 0;
  padding: 6px;
  background: #00BFFF;
  color: #000000;
  font-family: Open Sans;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  white-space: normal;
  opacity: 0;
  z-index: 99;
  pointer-events: none;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
.wz-tooltip:before {
  width: 100%;
  height: 0;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: " ";
}
.wz-tooltip:after {
  width: 0;
  height: 0;
  content: " ";
  position: absolute;
}
.wz-tooltip.wz--top {
  bottom: calc(100% + 10px);
  left: 50%;
  -webkit-transform: translate(-50%, 10px);
  -moz-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  -o-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
}
.wz-tooltip.wz--top:after {
  left: calc(50% - 5px);
  bottom: -5px;
  border-left: solid transparent 5px;
  border-right: solid transparent 5px;
  border-top: solid #00BFFF 5px;
}
.wz-tooltip.wz--bottom {
  top: calc(100% + 10px);
  left: 50%;
  -webkit-transform: translate(-50%, 10px);
  -moz-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  -o-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
}
.wz-tooltip.wz--bottom:after {
  left: calc(50% - 5px);
  top: -5px;
  border-left: solid transparent 5px;
  border-right: solid transparent 5px;
  border-bottom: solid #00BFFF 5px;
}
.wz-tooltip.wz--left {
  top: 50%;
  right: calc(100% + 10px);
  -webkit-transform: translate(10px, -50%);
  -moz-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  -o-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
}
.wz-tooltip.wz--left:after {
  top: calc(50% - 5px);
  right: -5px;
  border-top: solid transparent 5px;
  border-bottom: solid transparent 5px;
  border-left: solid #00BFFF 5px;
}
.wz-tooltip.wz--right {
  top: 50%;
  left: calc(100% + 10px);
  -webkit-transform: translate(10px, -50%);
  -moz-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  -o-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
}
.wz-tooltip.wz--right:after {
  top: calc(50% - 5px);
  left: -5px;
  border-top: solid transparent 5px;
  border-bottom: solid transparent 5px;
  border-right: solid #00BFFF 5px;
}
.wz-tooltip.wz--warning {
  background: rgb(255, 212.5, 127.5);
  color: #996600;
}
.wz-tooltip.wz--warning.wz--top:after {
  border-top-color: rgb(255, 212.5, 127.5);
}
.wz-tooltip.wz--warning.wz--bottom:after {
  border-bottom-color: rgb(255, 212.5, 127.5);
}
.wz-tooltip.wz--warning.wz--left:after {
  border-left-color: rgb(255, 212.5, 127.5);
}
.wz-tooltip.wz--warning.wz--right:after {
  border-right-color: rgb(255, 212.5, 127.5);
}
.wz-tooltip.wz--lrg {
  width: 280px;
}
.wz-tooltip.wz--med {
  width: 220px;
}
.wz-tooltip.wz--sml {
  width: 180px;
}
.wz-tooltip.wz--auto {
  width: auto;
  min-width: auto;
  max-width: none;
}

.wz-tooltrigger {
  position: relative;
}
.wz-tooltrigger:hover > .wz-tooltip {
  opacity: 1;
  pointer-events: auto;
}
.wz-tooltrigger:hover > .wz-tooltip.wz--top, .wz-tooltrigger:hover > .wz-tooltip.wz--bottom {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.wz-tooltrigger:hover > .wz-tooltip.wz--left, .wz-tooltrigger:hover > .wz-tooltip.wz--right {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.wz-window {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.wz-window:after {
  content: "";
  display: block;
  clear: both;
}
.wz-window.wz--full {
  height: auto;
  min-height: 100vh;
}
.wz-window.wz--light {
  background: #FFF;
}
.wz-window.wz--dark {
  background: #262626;
}
.wz-window.wz--gray {
  background: #EEEEEE;
}

.wz-window-cover {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  top: 0;
  left: 0;
  z-index: 997;
  background: rgba(0, 0, 0, 0.75);
}

.wz-container {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.wz-container.wz--center {
  max-width: 1280px;
  margin: 0 auto;
}
.wz-container.wz--center-half {
  max-width: 640px;
  margin: 0 auto;
}
.wz-container:after {
  content: "";
  display: block;
  clear: both;
}

.wz-container-cover {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
}

.wz-section {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.wz-section:after {
  content: "";
  display: block;
  clear: both;
}

.wz-grid {
  display: grid;
}
.wz-grid.wz--2-even {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.wz-grid.wz--3-even {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.wz-grid.wz--4-even {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.wz-grid.wz--5-even {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.wz-grid.wz--6-even {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.wz-grid.wz--2-auto {
  grid-template-columns: auto auto;
}
.wz-grid.wz--3-auto {
  grid-template-columns: auto auto auto;
}
.wz-grid.wz--4-auto {
  grid-template-columns: auto auto auto auto;
}
.wz-grid.wz--5-auto {
  grid-template-columns: auto auto auto auto auto;
}
.wz-grid.wz--6-auto {
  grid-template-columns: auto auto auto auto auto auto;
}
.wz-grid.wz--gap8 {
  grid-column-gap: 8px;
}
.wz-grid.wz--gap12 {
  grid-column-gap: 12px;
}
.wz-grid.wz--gap16 {
  grid-column-gap: 16px;
}
.wz-grid.wz--gap20 {
  grid-column-gap: 20px;
}
.wz-grid.wz--gap40 {
  grid-column-gap: 40px;
}

.wz-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  background: #00BFFF;
  background-position: center !important;
  background-size: cover !important;
  z-index: 1;
}
.wz-hero-img:after {
  content: "";
  display: block;
  clear: both;
}
.wz-hero-img.wz--sml {
  min-height: 320px;
}
.wz-hero-img.wz--med {
  min-height: 480px;
}
.wz-hero-img.wz--lrg {
  min-height: 640px;
}
.wz-hero-img.wz--shadow {
  box-shadow: 0 8px 6px -6px #CCC;
}

.wz-hero-overlay {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  z-index: 2;
}

.wz-hero-text {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.wz-hero-text.wz--hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wz-hero-text.wz--hero-left {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(0, -50%);
}
.wz-hero-text.wz--hero-right {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translate(0, -50%);
}

.wz-header {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  z-index: 99;
}
.wz-header:after {
  content: "";
  display: block;
  clear: both;
}

.wz-header-logo {
  width: auto;
  height: auto;
  display: block;
  position: relative;
}
.wz-header-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.wz-header-logo.wz--max {
  width: 100%;
  max-width: 100%;
}
.wz-header-logo.wz--lrg {
  width: 100%;
  max-width: 360px;
}
.wz-header-logo.wz--med {
  width: 100%;
  max-width: 280px;
}
.wz-header-logo.wz--sml {
  width: 100%;
  max-width: 220px;
}
.wz-header-logo.wz--tny {
  width: 100%;
  max-width: 180px;
}
.wz-header-logo.wz--square {
  width: 64px;
  height: 64px;
}
.wz-header-logo.wz--square img {
  width: 64px;
  height: 64px;
}
.wz-header-logo.wz--normal {
  width: auto;
  height: 64px;
}
.wz-header-logo.wz--normal img {
  width: auto;
  height: 64px;
}
.wz-header-logo:after {
  content: "";
  display: block;
  clear: both;
}

.wz-nav-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 800;
  color: #4D4D4D;
  background: transparent;
  transition: 0.2s ease-in-out;
}
.wz-nav-link:hover {
  color: #00BFFF;
}

.wz-nav-user {
  width: 36px;
  height: 36px;
  display: block;
  position: relative;
}

.wz-nav-action {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
  color: #000;
  transition: 0.2s ease-in-out;
}
.wz-nav-action i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}
.wz-nav-action:hover {
  color: rgb(0, 152.8, 204);
}

.wz-footer {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.wz-footer:after {
  content: "";
  display: block;
  clear: both;
}

#backToTop {
  width: auto;
  height: auto;
  position: fixed;
  bottom: 8px;
  left: 8px;
  font-size: 1.5rem;
  padding: 8px;
  color: #FFF;
  background: #00BFFF;
  z-index: 99;
}

#header.wz--index {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
}
#header .wz--desktop {
  display: block;
}
#header .wz--mobile {
  display: none;
}
#header .wz-header-logo {
  max-width: 48px;
}

.wz-nav-link {
  text-transform: uppercase;
  padding: 25px 20px;
  color: #FFF;
}
.wz-nav-link.wz--on {
  color: #00BFFF;
  text-decoration: underline;
}

.wz-nav-sublink {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 20px;
  color: #000;
  background: transparent;
  transition: 0.2s ease-in-out;
}
.wz-nav-sublink:hover {
  color: #FFF;
  background: rgb(0, 114.6, 153);
}
.wz-nav-sublink.wz--on {
  font-weight: 700;
  color: #111;
  background: #00BFFF;
}

.mbwLogo {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translate(0, -50%);
}

.mbwNav, .mbwSubNav {
  text-align: center;
}

.mbwCTA {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0, -50%);
}

.wz-slide-menu-logo img {
  height: 20px;
}

#banner {
  background: #15181D;
  box-shadow: 0 2px 8px #1A1A1A;
}
#banner.wz--index {
  padding-top: 64px;
}
#banner .wz-button {
  padding: 16px;
  border-radius: 3px;
}

#services .wz-col {
  margin-bottom: 0;
}
#services .wz-col:first-child, #services .wz-col:nth-child(2), #services .wz-col:nth-child(3) {
  margin-bottom: 200px;
}
#services .wz-image-parent {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translate(-50%, 0);
  box-shadow: 0 0 10px #AAA;
}
#services .wz-button {
  width: 100%;
  display: block;
  font-size: 0.75rem;
}

.mbwService {
  position: relative;
  padding: 140px 20px 20px;
  border-radius: 10px;
  background: #F9F9F9;
  box-shadow: 0 0 10px #CCC;
  z-index: 1;
}

#testimonials p:first-child {
  line-height: 1.75;
}
#testimonials .wz--review-response {
  line-height: 1.5rem;
}
#testimonials .wz-grid {
  margin-top: 100px;
}
#testimonials .wz-col:first-child {
  padding: 20px;
}
#testimonials .wz-col:last-child {
  padding: 20px;
}

.mbwReviewShow {
  display: none;
}

#google .wz-col:first-child {
  padding-left: 40px;
}
#google img {
  width: 100%;
  max-width: 460px;
  display: block;
  float: right;
}

.wz--services-image {
  padding: 320px 0 0;
}
.wz--services-image img {
  width: 100%;
  max-width: 720px;
  display: block;
  position: absolute;
  top: -102px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
}

.wz--process-icon, .wz--service-icon {
  width: 100%;
  max-width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 48px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #00BFFF;
  color: #FFF;
  transition: 0.2s ease-in-out;
}
.wz--process-icon:hover, .wz--service-icon:hover {
  scale: 1.1;
}

.wz--service-icon {
  margin: 0 20px 0 0;
}

.wz-divider {
  z-index: 2;
}
.wz-divider.wz--top {
  width: 100%;
  position: absolute;
  top: -1px;
  left: 0;
  overflow: hidden;
  line-height: 0;
}
.wz-divider.wz--top svg {
  width: calc(100% + 1.3px);
  height: 80px;
  display: block;
  position: relative;
}
.wz-divider.wz--white path {
  fill: #FFFFFF;
}
.wz-divider.wz--light-gray path {
  fill: #F0F2F5;
}
.wz-divider.wz--primary path {
  fill: #00BFFF;
}

.wz--service-item {
  margin-bottom: 40px;
  padding: 20px;
  background: #F2F2F2;
  border-radius: 10px;
  box-shadow: 0 0 10px #CCC;
  z-index: 2;
}

.wz--size-2 {
  line-height: 1.5rem;
}

.wz--size-3 {
  line-height: 2rem;
}

.wz--h480 {
  min-height: 480px;
  max-height: 480px;
  overflow: hidden;
}

.wz--bg-gradient-black-light {
  background: rgba(0, 0, 0, 0.5);
}

.wz--success {
  color: #00C851;
}

.wz-modal-image img {
  width: 100%;
  height: auto;
  display: block;
}

.my-slide {
  min-height: 480px;
  background-position: center !important;
  background-size: cover !important;
  cursor: pointer;
}

.tns-controls button {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 1.25rem;
  text-align: center;
  position: absolute;
  top: 50%;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #FFF;
  border: none;
  border-radius: 48px;
  transform: translate(0, -50%);
  z-index: 9;
}
.tns-controls button:first-child {
  left: 16px;
}
.tns-controls button:last-child {
  right: 16px;
}

.tns-liveregion {
  display: none !important;
}

.wz--copyright {
  margin-right: auto;
}

.wz--powered-by {
  margin-left: auto;
}
.wz--powered-by .wz--text-primary {
  margin-right: 6px;
}
.wz--powered-by img {
  width: auto;
  height: 20px;
  display: block;
}

.wz-svg-waves {
  width: 100%;
  height: 60px;
  max-height: 60px;
  display: block;
  position: relative;
  margin: 0;
  float: left;
  z-index: 5;
}
.wz-svg-waves.wz--bottom {
  top: -1px;
  transform: rotate(180deg);
}
.wz-svg-waves.wz--grayscale .wz-svg_wave1 > use {
  fill: #4D4D4D;
}
.wz-svg-waves.wz--grayscale .wz-svg_wave2 > use {
  fill: #AAA;
}
.wz-svg-waves.wz--grayscale .wz-svg_wave3 > use {
  fill: #CCC;
}
.wz-svg-waves.wz--grayscale .wz-svg_wave4 > use {
  fill: #FFF;
}
.wz-svg-waves.wz--black .wz-svg_wave1 > use {
  fill: #4D4D4D;
}
.wz-svg-waves.wz--black .wz-svg_wave2 > use {
  fill: #333;
}
.wz-svg-waves.wz--black .wz-svg_wave3 > use {
  fill: #1A1A1A;
}
.wz-svg-waves.wz--black .wz-svg_wave4 > use {
  fill: #000;
}
.wz-svg-waves.wz--primary .wz-svg_wave1 > use {
  fill: #004D66;
}
.wz-svg-waves.wz--primary .wz-svg_wave2 > use {
  fill: #007399;
}
.wz-svg-waves.wz--primary .wz-svg_wave3 > use {
  fill: #0099CC;
}
.wz-svg-waves.wz--primary .wz-svg_wave4 > use {
  fill: #00BFFF;
}

.wz-svg_wave1 > use {
  animation: wave1 10s linear infinite;
}
.wz-svg_wave1 > use:nth-child(1) {
  animation-delay: -2s;
}

.wz-svg_wave2 > use {
  animation: wave2 8s linear infinite;
}
.wz-svg_wave2 > use:nth-child(1) {
  animation-delay: -2s;
}

.wz-svg_wave3 > use {
  animation: wave3 6s linear infinite;
}
.wz-svg_wave3 > use:nth-child(1) {
  animation-delay: -2s;
}

.wz-svg_wave4 > use {
  animation: wave4 4s linear infinite;
}
.wz-svg_wave4 > use:nth-child(1) {
  animation-delay: -2s;
}

@keyframes wave1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes wave2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes wave3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes wave4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
/* -- SVG POLYGON POINT EFFECT -- */
.wz-svg-separator {
  width: 100%;
  display: block;
  position: relative;
  background: 0 0;
  z-index: 9;
  transform-origin: top;
  /* -webkit-transform: translateY(-100%) translateY(2px);
  transform: translateY(-100%) translateY(2px); */
}
.wz-svg-separator.wz--bottom {
  top: auto;
  bottom: 0;
}
.wz-svg-separator.wz--grayscale polygon:first-child {
  fill: #F0F2F5;
}
.wz-svg-separator.wz--grayscale polygon:nth-child(2) {
  fill: #AAA;
}
.wz-svg-separator.wz--grayscale polygon:nth-child(3) {
  fill: #AAA;
}
.wz-svg-separator.wz--grayscale polygon:last-child {
  fill: #4D4D4D;
}

@media all and (max-width: 1200px) {
  #services .wz-grid.wz--3-even {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #services .wz-col:first-child, #services .wz-col:nth-child(2), #services .wz-col:nth-child(3), #services .wz-col:nth-child(4) {
    margin-bottom: 200px;
  }
  #services .wz-col:nth-child(5), #services .wz-col:last-child {
    margin-bottom: 0;
  }
  #process .wz-grid.wz--4-even {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #process .wz-col {
    margin-bottom: 80px;
  }
  #process .wz-col:nth-child(3), #process .wz-col:last-child {
    margin-bottom: 0;
  }
  #service_banner h1 {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 1100px) {
  .wz-nav-link {
    padding: 25px 8px;
  }
}
@media all and (max-width: 1000px) {
  #header {
    padding: 12px;
  }
  #header .wz--desktop {
    display: none;
  }
  #header .wz--mobile {
    display: block;
  }
  .mbwSubNav {
    display: none;
  }
  .wz-hero-img.wz--lrg {
    min-height: 360px;
  }
}
@media all and (max-width: 880px) {
  #service_index .wz-grid.wz--3-even {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  #service_index .wz-col:first-child, #service_index .wz-col:nth-child(2) {
    margin-bottom: 40px;
  }
  #service_index .wz-col:last-child {
    margin-bottom: 0;
  }
  #google {
    text-align: center;
  }
  #google a {
    display: block;
    margin-bottom: 80px;
  }
  #google .wz-grid.wz--2-even {
    grid-template-columns: 1fr;
  }
  #google .wz-col:first-child {
    padding-left: 20px;
  }
  #google img {
    max-width: 460px;
    margin: 0 auto;
    float: none;
  }
}
@media all and (max-width: 767px) {
  .wz--size-3.wz--mobile {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #banner h1 {
    margin-bottom: 16px;
  }
  #service_banner h1 {
    margin-bottom: 60px;
  }
  #testimonials p:first-child {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #testimonials .wz-grid {
    margin-top: 80px;
  }
  #testimonials .wz--review-response {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  #footer .wz-grid.wz--4-even {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #footer .wz-col {
    margin-bottom: 40px;
  }
  #footer .wz-col:nth-child(3), #footer .wz-col:last-child {
    margin-bottom: 0;
  }
}
@media all and (max-width: 760px) {
  .wz--services-image {
    padding: 238px 0 0;
  }
  .wz--services-image img {
    max-width: 560px;
    top: -88px;
  }
}
@media all and (max-width: 680px) {
  .wz-nav {
    display: none;
  }
  #services .wz-grid.wz--3-even {
    grid-template-columns: 1fr;
  }
  #services .wz-col {
    margin-bottom: 160px;
  }
  #services .wz-col:first-child, #services .wz-col:nth-child(2), #services .wz-col:nth-child(3), #services .wz-col:nth-child(4), #services .wz-col:nth-child(5) {
    margin-bottom: 160px;
  }
  #services .wz-col:last-child {
    margin-bottom: 0;
  }
  .wz--service-item .wz--flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .wz--service-icon {
    margin: 0 0 20px 0;
  }
  #process .wz-grid.wz--4-even {
    grid-template-columns: 1fr;
  }
  #process .wz-col, #process .wz-col:nth-child(3) {
    margin-bottom: 80px;
  }
  #process .wz-col:last-child, #process .wz-col:nth-child(3):last-child {
    margin-bottom: 0;
  }
  #testimonials .wz-grid.wz--2-even {
    grid-template-columns: 1fr;
  }
  #testimonials .wz-col:first-child {
    margin-bottom: 40px;
  }
  #testimonials .wz--h480 {
    min-height: 240px;
    max-height: 240px;
  }
}
@media all and (max-width: 600px) {
  .wz--services-image {
    padding: 168px 0 0;
  }
  .wz--services-image img {
    max-width: 420px;
    top: -78px;
  }
}
@media all and (max-width: 480px) {
  #banner h1 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  #banner h2 {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
  #banner .wz-button {
    width: 100%;
    display: block;
  }
  .wz--services-image {
    padding: 126px 0 0;
  }
  .wz--services-image img {
    max-width: 320px;
    top: -60px;
  }
  .wz-checkbox {
    font-size: 0.85rem;
    white-space: nowrap;
  }
  #footer {
    text-align: center;
  }
  #footer .wz-grid.wz--4-even {
    grid-template-columns: 1fr;
  }
  #footer .wz-col:nth-child(3) {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 400px) {
  .wz-footer .wz--flex {
    text-align: center;
    flex-direction: column !important;
  }
  .wz--copyright {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .wz--powered-by {
    margin-left: 0;
  }
  .wz--powered-by .wz--text-primary {
    margin-right: 0;
    margin-bottom: 4px;
  }
}
.wz--text-normal {
  font-style: normal;
  font-weight: normal;
}

.wz--text-center {
  text-align: center;
}

.wz--text-right {
  text-align: right;
}

.wz--text-left {
  text-align: left;
}

.wz--text-upper {
  text-transform: uppercase;
}

.wz--text-lower {
  text-transform: lowercase;
}

.wz--text-capital {
  text-transform: capitalize;
}

.wz--text-underline {
  text-decoration: underline;
}

.wz--text-nowrap {
  white-space: nowrap;
}

.wz--noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome and Opera */
}

.wz--text-italic {
  font-style: italic;
}

.wz--text-linethru {
  text-decoration: line-through;
}

.wz--text-oblique {
  font-style: oblique;
}

.wz--text-lighter {
  font-weight: lighter;
}

.wz--text-bold {
  font-weight: bold;
}

.wz--text-bolder {
  font-weight: bolder;
}

.wz--text-100 {
  font-weight: 100;
}

.wz--text-200 {
  font-weight: 200;
}

.wz--text-300 {
  font-weight: 300;
}

.wz--text-400 {
  font-weight: 400;
}

.wz--text-500 {
  font-weight: 500;
}

.wz--text-600 {
  font-weight: 600;
}

.wz--text-700 {
  font-weight: 700;
}

.wz--text-800 {
  font-weight: 800;
}

.wz--text-900 {
  font-weight: 900;
}

.wz--size-0 {
  font-size: 0.75rem;
}

.wz--size-1 {
  font-size: 0.875rem;
}

.wz--size-2 {
  font-size: 1rem;
}

.wz--size-3 {
  font-size: 1.25rem;
}

.wz--size-4 {
  font-size: 1.5rem;
}

.wz--size-5 {
  font-size: 2rem;
}

.wz--size-6 {
  font-size: 2.5rem;
}

.wz--size-7 {
  font-size: 3rem;
}

.wz--font-theme {
  font-family: Open Sans, Roboto, Montserrat, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wz--w-max {
  max-width: 100% !important;
  width: 100%;
}

.wz--w-a {
  width: auto;
}

.wz--w-full, .wz--w-100 {
  width: 100%;
}

.wz--w-90 {
  width: 90%;
}

.wz--w-80 {
  width: 80%;
}

.wz--w-75 {
  width: 75%;
}

.wz--w-66 {
  width: 66%;
}

.wz--w-50 {
  width: 50%;
}

.wz--w-33 {
  width: 33%;
}

.wz--w-25 {
  width: 25%;
}

.wz--w-20 {
  width: 20%;
}

.wz--w-10 {
  width: 10%;
}

.wz--h-a {
  height: auto;
}

.wz--h-100 {
  min-height: 100%;
}

.wz--h-vh {
  min-height: 100vh;
}

.wz--block {
  display: block;
}

.wz--inline {
  display: inline;
}

.wz--inline-block {
  display: inline-block;
}

.wz--flex {
  display: flex;
}
.wz--flex.wz--direction-column {
  flex-direction: column;
}
.wz--flex.wz--direction-column-reverse {
  flex-direction: column-reverse;
}
.wz--flex.wz--direction-row {
  flex-direction: row;
}
.wz--flex.wz--direction-row-reverse {
  flex-direction: row-reverse;
}
.wz--flex.wz--wrap {
  flex-wrap: wrap;
}
.wz--flex.wz--nowrap {
  flex-wrap: nowrap;
}
.wz--flex.wz--row-wrap {
  flex-wrap: row wrap;
}
.wz--flex.wz--wrap-reverse {
  flex-wrap: wrap-reverse;
}
.wz--flex.wz--align-start {
  align-items: flex-start;
}
.wz--flex.wz--align-end {
  align-items: flex-end;
}
.wz--flex.wz--align-middle {
  align-items: center;
}
.wz--flex.wz--align-stretch {
  align-items: stretch;
}
.wz--flex.wz--align-baseline {
  align-items: baseline;
}
.wz--flex.wz--justify-start {
  justify-content: start;
}
.wz--flex.wz--justify-end {
  justify-content: end;
}
.wz--flex.wz--justify-center {
  justify-content: center;
}
.wz--flex.wz--justify-space-between {
  justify-content: space-between;
}
.wz--flex.wz--justify-space-around {
  justify-content: space-around;
}
.wz--flex.wz--justify-space-evenly {
  justify-content: space-evenly;
}
.wz--flex.wz--flex-grow {
  flex-grow: 1;
}

.wz--after-clear:after {
  content: "";
  display: block;
  clear: both;
}

.wz--clear {
  clear: both;
}

.wz--clear-none {
  clear: none;
}

.wz--relative {
  position: relative;
}

.wz--fixed {
  position: fixed;
}

.wz--static {
  position: static;
}

.wz--absolute {
  position: absolute;
}

.wz--absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wz--absolute-center-right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.wz--absolute-center-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.wz--float-right {
  float: right;
}

.wz--float-left {
  float: left;
}

.wz--text-default {
  color: #4D4D4D;
}

.wz--text-white {
  color: #FFF;
}

.wz--text-black {
  color: #000;
}

.wz--text-light-black {
  color: #1A1A1A;
}

.wz--text-gray {
  color: #EEEEEE;
}

.wz--text-dark-gray {
  color: #333333;
}

.wz--text-primary {
  color: #00BFFF;
}

.wz--text-secondary {
  color: rgb(0, 152.8, 204);
}

.wz--text-darken {
  color: rgb(0, 152.8, 204);
}

.wz--text-info {
  color: #33B5E5;
}

.wz--text-success {
  color: #00C851;
}

.wz--text-warning {
  color: #FFBB33;
}

.wz--text-disabled {
  color: #EEEEEE;
}

.wz--text-error {
  color: #FF4444;
}

.wz--bg-default {
  background: #FFFFFF;
}

.wz--bg-white {
  background: #FFF;
}

.wz--bg-light-black {
  background: #1A1A1A;
}

.wz--bg-black {
  background: #000;
}

.wz--bg-gradient-black {
  background: rgba(0, 0, 0, 0.75);
}

.wz--bg-dark {
  background: #262626;
}

.wz--bg-light-gray {
  background: #F0F2F5;
}

.wz--bg-gray {
  background: #EEEEEE;
}

.wz--bg-dark-gray {
  background: #333333;
}

.wz--bg-primary {
  background: #00BFFF;
}

.wz--bg-secondary {
  background: rgb(0, 152.8, 204);
}

.wz--bg-darken {
  background: rgb(0, 152.8, 204);
}

.wz--bg-info {
  background: #33B5E5;
}

.wz--bg-success {
  background: #00C851;
}

.wz--bg-warning {
  background: #FFBB33;
}

.wz--bg-disabled {
  background: #EEEEEE;
}

.wz--bg-error {
  background: #FF4444;
}

.wz--bg-transparent {
  background: transparent;
}

.wz--m {
  margin: 0;
}

.wz--m-auto {
  margin: auto;
}

.wz--m-auto-center {
  margin-left: auto;
  margin-right: auto;
}

.wz--mt-auto {
  margin-top: auto;
}

.wz--mb-auto {
  margin-bottom: auto;
}

.wz--ml-auto {
  margin-left: auto;
}

.wz--mr-auto {
  margin-right: auto;
}

[class*=wz--m-t] {
  margin-top: calc(20px * 1);
}
[class*=wz--m-t][class*=-tx0] {
  margin-top: calc(20px * 0);
}
[class*=wz--m-t][class*=-tx1] {
  margin-top: calc(20px * 1);
}
[class*=wz--m-t][class*=-tx2] {
  margin-top: calc(20px * 2);
}
[class*=wz--m-t][class*=-tx3] {
  margin-top: calc(20px * 3);
}
[class*=wz--m-t][class*=-tx4] {
  margin-top: calc(20px * 4);
}
[class*=wz--m-t][class*=-tx5] {
  margin-top: calc(20px * 5);
}
[class*=wz--m-t][class*=-tx6] {
  margin-top: calc(20px * 6);
}

[class*=wz--m-r] {
  margin-right: calc(20px * 1);
}
[class*=wz--m-r][class*=-rx0] {
  margin-right: calc(20px * 0);
}
[class*=wz--m-r][class*=-rx1] {
  margin-right: calc(20px * 1);
}
[class*=wz--m-r][class*=-rx2] {
  margin-right: calc(20px * 2);
}
[class*=wz--m-r][class*=-rx3] {
  margin-right: calc(20px * 3);
}
[class*=wz--m-r][class*=-rx4] {
  margin-right: calc(20px * 4);
}
[class*=wz--m-r][class*=-rx5] {
  margin-right: calc(20px * 5);
}
[class*=wz--m-r][class*=-rx6] {
  margin-right: calc(20px * 6);
}

[class*=wz--m-b] {
  margin-bottom: calc(20px * 1);
}
[class*=wz--m-b][class*=-bx0] {
  margin-bottom: calc(20px * 0);
}
[class*=wz--m-b][class*=-bx1] {
  margin-bottom: calc(20px * 1);
}
[class*=wz--m-b][class*=-bx2] {
  margin-bottom: calc(20px * 2);
}
[class*=wz--m-b][class*=-bx3] {
  margin-bottom: calc(20px * 3);
}
[class*=wz--m-b][class*=-bx4] {
  margin-bottom: calc(20px * 4);
}
[class*=wz--m-b][class*=-bx5] {
  margin-bottom: calc(20px * 5);
}
[class*=wz--m-b][class*=-bx6] {
  margin-bottom: calc(20px * 6);
}

[class*=wz--m-l] {
  margin-left: calc(20px * 1);
}
[class*=wz--m-l][class*=-lx0] {
  margin-left: calc(20px * 0);
}
[class*=wz--m-l][class*=-lx1] {
  margin-left: calc(20px * 1);
}
[class*=wz--m-l][class*=-lx2] {
  margin-left: calc(20px * 2);
}
[class*=wz--m-l][class*=-lx3] {
  margin-left: calc(20px * 3);
}
[class*=wz--m-l][class*=-lx4] {
  margin-left: calc(20px * 4);
}
[class*=wz--m-l][class*=-lx5] {
  margin-left: calc(20px * 5);
}
[class*=wz--m-l][class*=-lx6] {
  margin-left: calc(20px * 6);
}

.wz--m-none {
  margin: 0;
}

.wz--mr8 {
  margin-right: 8px;
}

.wz--mr12 {
  margin-right: 12px;
}

.wz--mr16 {
  margin-right: 16px;
}

.wz--ml8 {
  margin-left: 8px;
}

.wz--ml12 {
  margin-left: 12px;
}

.wz--ml16 {
  margin-left: 16px;
}

.wz--mt8 {
  margin-top: 8px;
}

.wz--mt12 {
  margin-top: 12px;
}

.wz--mt16 {
  margin-top: 16px;
}

.wz--mb8 {
  margin-bottom: 8px;
}

.wz--mb12 {
  margin-bottom: 12px;
}

.wz--mb16 {
  margin-bottom: 16px;
}

.wz--p {
  padding: 0;
}

.wz--p8 {
  padding: 8px;
}

.wz--p12 {
  padding: 12px;
}

.wz--p16 {
  padding: 16px;
}

[class*=wz--p-x][class*=-p-x0] {
  padding: calc(20px * 0);
}
[class*=wz--p-x][class*=-p-x1] {
  padding: calc(20px * 1);
}
[class*=wz--p-x][class*=-p-x2] {
  padding: calc(20px * 2);
}
[class*=wz--p-x][class*=-p-x3] {
  padding: calc(20px * 3);
}
[class*=wz--p-x][class*=-p-x4] {
  padding: calc(20px * 4);
}
[class*=wz--p-x][class*=-p-x5] {
  padding: calc(20px * 5);
}
[class*=wz--p-x][class*=-p-x6] {
  padding: calc(20px * 6);
}

.wz--p-auto {
  padding: auto;
}

[class*=wz--p-t] {
  padding-top: calc(20px * 1);
}
[class*=wz--p-t][class*=-tx0] {
  padding-top: calc(20px * 0);
}
[class*=wz--p-t][class*=-tx1] {
  padding-top: calc(20px * 1);
}
[class*=wz--p-t][class*=-tx2] {
  padding-top: calc(20px * 2);
}
[class*=wz--p-t][class*=-tx3] {
  padding-top: calc(20px * 3);
}
[class*=wz--p-t][class*=-tx4] {
  padding-top: calc(20px * 4);
}
[class*=wz--p-t][class*=-tx5] {
  padding-top: calc(20px * 5);
}
[class*=wz--p-t][class*=-tx6] {
  padding-top: calc(20px * 6);
}

[class*=wz--p-r] {
  padding-right: calc(20px * 1);
}
[class*=wz--p-r][class*=-rx0] {
  padding-right: calc(20px * 0);
}
[class*=wz--p-r][class*=-rx1] {
  padding-right: calc(20px * 1);
}
[class*=wz--p-r][class*=-rx2] {
  padding-right: calc(20px * 2);
}
[class*=wz--p-r][class*=-rx3] {
  padding-right: calc(20px * 3);
}
[class*=wz--p-r][class*=-rx4] {
  padding-right: calc(20px * 4);
}
[class*=wz--p-r][class*=-rx5] {
  padding-right: calc(20px * 5);
}
[class*=wz--p-r][class*=-rx6] {
  padding-right: calc(20px * 6);
}

[class*=wz--p-b] {
  padding-bottom: calc(20px * 1);
}
[class*=wz--p-b][class*=-bx0] {
  padding-bottom: calc(20px * 0);
}
[class*=wz--p-b][class*=-bx1] {
  padding-bottom: calc(20px * 1);
}
[class*=wz--p-b][class*=-bx2] {
  padding-bottom: calc(20px * 2);
}
[class*=wz--p-b][class*=-bx3] {
  padding-bottom: calc(20px * 3);
}
[class*=wz--p-b][class*=-bx4] {
  padding-bottom: calc(20px * 4);
}
[class*=wz--p-b][class*=-bx5] {
  padding-bottom: calc(20px * 5);
}
[class*=wz--p-b][class*=-bx6] {
  padding-bottom: calc(20px * 6);
}

[class*=wz--p-l] {
  padding-left: calc(20px * 1);
}
[class*=wz--p-l][class*=-lx0] {
  padding-left: calc(20px * 0);
}
[class*=wz--p-l][class*=-lx1] {
  padding-left: calc(20px * 1);
}
[class*=wz--p-l][class*=-lx2] {
  padding-left: calc(20px * 2);
}
[class*=wz--p-l][class*=-lx3] {
  padding-left: calc(20px * 3);
}
[class*=wz--p-l][class*=-lx4] {
  padding-left: calc(20px * 4);
}
[class*=wz--p-l][class*=-lx5] {
  padding-left: calc(20px * 5);
}
[class*=wz--p-l][class*=-lx6] {
  padding-left: calc(20px * 6);
}

[class*=wz--p-x][class*=-xx0] {
  padding-left: calc(20px * 0);
  padding-right: calc(20px * 0);
}
[class*=wz--p-x][class*=-xx1] {
  padding-left: calc(20px * 1);
  padding-right: calc(20px * 1);
}
[class*=wz--p-x][class*=-xx2] {
  padding-left: calc(20px * 2);
  padding-right: calc(20px * 2);
}
[class*=wz--p-x][class*=-xx3] {
  padding-left: calc(20px * 3);
  padding-right: calc(20px * 3);
}
[class*=wz--p-x][class*=-xx4] {
  padding-left: calc(20px * 4);
  padding-right: calc(20px * 4);
}
[class*=wz--p-x][class*=-xx5] {
  padding-left: calc(20px * 5);
  padding-right: calc(20px * 5);
}
[class*=wz--p-x][class*=-xx6] {
  padding-left: calc(20px * 6);
  padding-right: calc(20px * 6);
}

[class*=wz--p-y] {
  padding-top: calc(20px * 1);
  padding-bottom: calc(20px * 1);
}
[class*=wz--p-y][class*=-yx0] {
  padding-top: calc(20px * 0);
  padding-bottom: calc(20px * 0);
}
[class*=wz--p-y][class*=-yx1] {
  padding-top: calc(20px * 1);
  padding-bottom: calc(20px * 1);
}
[class*=wz--p-y][class*=-yx2] {
  padding-top: calc(20px * 2);
  padding-bottom: calc(20px * 2);
}
[class*=wz--p-y][class*=-yx3] {
  padding-top: calc(20px * 3);
  padding-bottom: calc(20px * 3);
}
[class*=wz--p-y][class*=-yx4] {
  padding-top: calc(20px * 4);
  padding-bottom: calc(20px * 4);
}
[class*=wz--p-y][class*=-yx5] {
  padding-top: calc(20px * 5);
  padding-bottom: calc(20px * 5);
}
[class*=wz--p-y][class*=-yx6] {
  padding-top: calc(20px * 6);
  padding-bottom: calc(20px * 6);
}

.wz--p-none {
  padding: 0;
}

.wz--pr8 {
  padding-right: 8px;
}

.wz--pr12 {
  padding-right: 12px;
}

.wz--pr16 {
  padding-right: 16px;
}

.wz--pl8 {
  padding-left: 8px;
}

.wz--pl12 {
  padding-left: 12px;
}

.wz--pl16 {
  padding-left: 16px;
}

.wz--pt8 {
  padding-top: 8px;
}

.wz--pt12 {
  padding-top: 12px;
}

.wz--pt16 {
  padding-top: 16px;
}

.wz--pb8 {
  padding-bottom: 8px;
}

.wz--pb12 {
  padding-bottom: 12px;
}

.wz--pb16 {
  padding-bottom: 16px;
}

.wz--px8 {
  padding-left: 8px;
  padding-right: 8px;
}

.wz--px12 {
  padding-left: 12px;
  padding-right: 12px;
}

.wz--px16 {
  padding-left: 16px;
  padding-right: 16px;
}

.wz--py8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.wz--py12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.wz--py16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.wz--show {
  display: block;
}

.wz--hide {
  display: none;
}

.wz--hidden {
  display: none;
}

.wz--ease-in-out {
  transition: 0.2s ease-in-out;
}

.wz--hover-rotate {
  transition: 0.5s ease-in-out;
}
.wz--hover-rotate:hover {
  transform: rotate(360deg);
}

.wz--hover-flip {
  transition: 0.25s ease-in-out;
}
.wz--hover-flip:hover {
  transform: scaleX(-1);
}

.wz--border-radius-5 {
  border-radius: 5px;
}

.wz--border-radius-10 {
  border-radius: 10px;
}

.wz--border-radius-20 {
  border-radius: 20px;
}

.wz--border-radius-100 {
  border-radius: 100%;
}

.wz--box-shadow {
  box-shadow: 0 0 10px #CCC;
  z-index: 2;
}

.wz--box-shadow-dark {
  box-shadow: 0 0 10px #1A1A1A;
  z-index: 2;
}

.wz--box-shadow-top {
  box-shadow: 0 -8px 6px -6px #AAA;
  z-index: 2;
}

.wz--box-shadow-bottom {
  box-shadow: 0 8px 6px -6px #CCC;
  z-index: 2;
}

/*# sourceMappingURL=application.css.map */
