html.expanded-sticky {
  overflow: hidden;
}

html.expanded-sticky body {
  position: relative;
  overflow: hidden;
}

.sticky-form {
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 1111;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.sticky-form.expanded {
  width: 33.33%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

.sticky-form.sticky {
  position: fixed;
  bottom: 0;
}

.sticky-form__icon {
  background: url("/iwov-resources/images/product-landing-page/sticky-form-icon.png") no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid transparent;
  float: right;
}

.sticky-form__icon:hover {
  background: url("/iwov-resources/images/product-landing-page/sticky-form-icon-hover.png") no-repeat;
  background-size: contain;
}

.sticky-form__icon:before, .sticky-form__icon:after {
  width: 25px;
  height: 2px;
  content: "";
  position: absolute;
  display: block;
  background-color: #a0a0a0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sticky-form.expanded .sticky-form__icon {
  position: relative;
  background: transparent;
  border-left: 1px solid #a0a0a0;
}

.sticky-form.expanded .sticky-form__icon:before {
  opacity: 1;
  -webkit-transform: translateY(0px) rotate(45deg);
      -ms-transform: translateY(0px) rotate(45deg);
          transform: translateY(0px) rotate(45deg);
}

.sticky-form.expanded .sticky-form__icon:after {
  opacity: 1;
  -webkit-transform: translateY(0px) rotate(-45deg);
      -ms-transform: translateY(0px) rotate(-45deg);
          transform: translateY(0px) rotate(-45deg);
}

.sticky-form__title {
  display: block;
  height: 50px;
  width: 100%;
  background-color: #001f67;
  border-bottom: 1px solid #a0a0a0;
}

.sticky-form.expanded .sticky-form__title-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: showing 1s;
          animation: showing 1s;
  width: calc(100% - 50px);
}

.sticky-form__title-text {
  float: left;
  padding: 10px;
  height: 100%;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.sticky-form__title:after {
  content: '';
  display: table;
  clear: both;
}

.sticky-form__body {
  display: block;
  width: 0;
  clear: both;
  height: 100%;
  background-color: #eaeaea;
  position: relative;
  padding-bottom: 50px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0;
  opacity: 0;
  visibility: hidden;
}

.sticky-form.expanded .sticky-form__body {
  visibility: visible;
  width: 100%;
  opacity: 1;
}

.bg-1 {
  background-color: #e9e9e9;
}

.bg-2 {
  background-color: #f5f5f5;
}

@media all and (hover: none) {
  .sticky-form__icon:hover {
    background: url("/iwov-resources/images/product-landing-page/sticky-form-icon.png") no-repeat;
    background-size: contain;
  }
}

@media all and (min-width: 1180px) {
  .sticky-form.expanded {
    width: 393px;
  }
}

@media all and (max-width: 1180px) {
  .sticky-form {
    right: 0 !important;
  }
}

@media all and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .iw_section .iw_row .iw_columns .iw_component {
    margin-right: -15px;
  }
  .sticky-form.expanded {
    width: 50%;
  }
  .sticky-form__body {
    padding-bottom: 10px;
  }
}

@media all and (max-width: 767px) {
  .sticky-form {
    position: absolute;
    bottom: 6px;
  }
  .sticky-form.expanded {
    top: 0 !important;
    width: 100%;
    height: calc(100vh - 50px) !important;
  }
  .sticky-form__body {
    padding-bottom: 0;
  }
}

@-webkit-keyframes expanding {
  0% {
    height: 50px;
    width: 50px;
  }
  50% {
    height: 100%;
    width: 50px;
  }
}

@keyframes expanding {
  0% {
    height: 50px;
    width: 50px;
  }
  50% {
    height: 100%;
    width: 50px;
  }
}

@-webkit-keyframes showing {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showing {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=sticky-form.css.map */