@charset "UTF-8";
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 var(--cw-primary-color);
    box-shadow: 0 0 0 0 var(--cw-primary-color);
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px transparent;
    box-shadow: 0 0 0 15px transparent;
  }
  to {
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 var(--cw-primary-color);
    box-shadow: 0 0 0 0 var(--cw-primary-color);
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px transparent;
    box-shadow: 0 0 0 15px transparent;
  }
  to {
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
:root {
  --cw-alpha: 1;
  --cw-primary-color: rgba(47, 105, 255, var(--cw-alpha, 1));
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-text-size-adjust: 100%;
}
*,
::after,
::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  background-repeat: no-repeat;
}
::after,
::before {
  vertical-align: inherit;
  text-decoration: inherit;
}
* {
  margin: 0;
  padding: 0;
}
hr {
  overflow: visible;
  height: 0;
  color: inherit;
}
details,
main {
  display: block;
}
summary {
  display: list-item;
}
small {
  font-size: 80%;
}
[hidden] {
  display: none;
}
abbr[title] {
  text-decoration: underline dotted;
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline-width: 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}
pre {
  font-size: 1em;
}
b,
strong {
  font-weight: bolder;
}
sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
}
iframe,
img {
  border-style: none;
}
input {
  border-radius: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  resize: vertical;
}
button,
input,
optgroup,
select,
textarea {
  font: inherit;
}
optgroup {
  font-weight: 700;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role="button"],
[type="button"],
[type="reset"],
[type="submit"],
button {
  cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}
button,
input,
select,
textarea {
  border-style: none;
  background-color: transparent;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
select::-ms-expand {
  display: none;
}
select::-ms-value {
  color: currentColor;
}
legend {
  display: table;
  max-width: 100%;
  white-space: normal;
  color: inherit;
  border: 0;
}
::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  -webkit-appearance: button;
}
[disabled] {
  cursor: default;
}
progress {
  vertical-align: baseline;
}
[aria-busy="true"] {
  cursor: progress;
}
[aria-controls] {
  cursor: pointer;
}
[aria-disabled="true"] {
  cursor: default;
}
.chat,
.chat * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  font-family: var(--cw-font-family, Arial), Arial, sans-serif;
}
.chat * {
  padding: 0;
}
.chat [hidden] {
  display: none !important;
}
.chat {
  position: fixed;
  z-index: 99999;
  right: 0;
  bottom: 0;
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .chat {
    right: calc(60px + var(--cw-scroll-width, 0px));
    bottom: 60px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .chat {
    right: calc(80px + var(--cw-scroll-width, 0px));
    bottom: 80px;
  }
}
.chat__trigger {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--cw-primary-color);
}
@media (min-width: 768px) {
  .chat__trigger {
    width: 70px;
    height: 70px;
  }
}
.chat__trigger:not(:last-child) {
  display: none;
  margin-bottom: 15px;
  opacity: 0;
}
@media (min-width: 768px) {
  .chat__trigger:not(:last-child) {
    margin-bottom: 25px;
  }
}
.chat__trigger[data-trigger="controls"] {
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
}
.chat__trigger[data-trigger="controls"]:hover {
  -webkit-animation: none;
  animation: none;
}
.chat__trigger.is-telegram {
  background: #2199f3;
}

.chat__trigger.is-max {
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(0.07%, #2b4afa),
      color-stop(100.07%, #9c4ddc)
  );
  background: linear-gradient(90deg, #2b4afa 0.07%, #9c4ddc 100.07%);
}
.chat__trigger.is-whatsapp {
  -webkit-transition: none;
  transition: none;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(-9900%, #1faf38),
      to(#60d669)
  );
  background: linear-gradient(0deg, #1faf38 -9900%, #60d669 100%);
}
.chat__trigger.is-max:hover svg,
.chat__trigger.is-telegram:hover svg,
.chat__trigger.is-whatsapp:hover svg {
  -webkit-transform: translate(-50%, -50%) scale(1.15);
  -ms-transform: translate(-50%, -50%) scale(1.15);
  transform: translate(-50%, -50%) scale(1.15);
}
.chat__trigger.is-callback {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
.chat__trigger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .chat__trigger-icon {
    width: 30px;
    height: 30px;
  }
}
.chat__trigger-icon:not(:first-child) {
  display: none;
}
.chat__main {
  position: absolute;
  right: 0;
  bottom: 0;
  visibility: hidden;
  width: 100vw;
  max-height: 80vh;
  -webkit-transition: opacity 0.3s ease-in-out,
  -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,
  -webkit-transform 0.3s ease-in-out;
  -webkit-transform: scale(0.1) translateY(0);
  -ms-transform: scale(0.1) translateY(0);
  transform: scale(0.1) translateY(0);
  -webkit-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
  opacity: 0;
}
@media (min-width: 768px) {
  .chat__main {
    right: 0;
    bottom: 70px;
    width: auto;
    max-height: calc(100vh - 60px - 130px);
    padding: 0;
  }
}
@media (min-width: 992px) {
  .chat__main {
    max-height: calc(100vh - 80px - 130px);
  }
}
.chat.is-active .chat__trigger[data-trigger="controls"] {
  -webkit-animation: none;
  animation: none;
  background: var(--cw-primary-color, #2f69ff);
}
.chat.is-active [data-trigger="controls"] .chat__trigger-icon {
  display: block;
}
.chat.is-active [data-trigger="controls"] .chat__trigger-icon:first-child {
  display: none;
}
.chat.is-active .chat__trigger:not(:last-child) {
  display: block;
}
.chat.is-active .chat__trigger {
  -webkit-animation: fadeInUp 0.3s forwards;
  animation: fadeInUp 0.3s forwards;
}
.chat.is-active .chat__trigger:nth-last-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.chat.is-active .chat__trigger:nth-last-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.chat.is-active .chat__trigger:nth-last-child(4) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.chat.is-active .chat__trigger:nth-last-child(5) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.chat.is-active .chat__trigger:nth-last-child(6) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.chat.is-active .chat__trigger:nth-last-child(7) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.chat.is-active .chat__trigger:nth-last-child(8) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.chat.is-callback-active [data-panel="callback"] {
  z-index: 3;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
@media (min-width: 768px) {
  .chat.is-callback-active [data-panel="callback"] {
    -webkit-transform: scale(1) translate3d(0, -15px, 0);
    transform: scale(1) translate3d(0, -15px, 0);
  }
}
.chat-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  background: rgba(217, 217, 217, 0.8);
}
.chat .scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  margin-bottom: 40px;
  border-radius: 4px;
  background-color: #e2e2ea;
}
.chat .scrollbar::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: var(--cw-primary-color);
}
.chat .scrollbar::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #e2e2ea;
}
[class*="jivoMobileButton"] {
  display: none !important;
}
.callback-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 300px;
  padding: 35px 15px 35px 30px;
  color: #000;
  border-radius: 15px 15px 0 0;
  background: #fff;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .callback-panel {
    width: 410px;
    border-radius: 15px;
  }
}
.callback-panel__main {
  overflow-y: auto;
  width: 100%;
  padding: 5px 15px 5px 0;
}
.callback-panel__header {
  margin-bottom: 20px;
  padding: 0 20px;
}
.callback-panel__close-chat {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: #878787;
  border: 0;
  background: 0 0;
}
.callback-panel__close-chat:hover {
  color: #000;
}
.callback-panel__close-chat-icon {
  width: 15px;
  height: 15px;
}
.callback-panel__logo {
  display: block;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
}
.callback-panel__body {
  margin-bottom: 20px;
}
.callback-panel__heading {
  margin-bottom: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .callback-panel__heading {
    font-size: 28px;
  }
}
.callback-panel__desc {
  margin-bottom: 25px;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 768px) {
  .callback-panel__desc {
    font-size: 15px;
  }
}
.callback-panel__form {
  max-width: 295px;
  margin: 0 auto;
}
.callback-panel__fields {
  margin-bottom: 20px;
}
.callback-panel__field:not(:last-child) {
  margin-bottom: 20px;
}
.callback-panel__input {
  width: 100%;
  padding: 16px 25px;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  outline: 0;
  font-size: 14px;
}
.callback-panel__input:focus {
  border-color: var(--cw-primary-color, #2f69ff);
}
.callback-panel__input::-webkit-input-placeholder {
  color: #c2c2c2;
}
.callback-panel__input::-moz-placeholder {
  color: #c2c2c2;
}
.callback-panel__input:-ms-input-placeholder {
  color: #c2c2c2;
}
.callback-panel__input::-ms-input-placeholder {
  color: #c2c2c2;
}
.callback-panel__input::placeholder {
  color: #c2c2c2;
}
.callback-panel__summary {
  text-align: center;
}
.callback-panel__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 170px;
  padding: 17px 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  text-align: center;
  color: #fff;
  border: 0;
  border-radius: 8px;
  outline: 0;
  background-color: var(--cw-primary-color);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
}
.callback-panel__btn[disabled] {
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}
.callback-panel__bottom {
  max-width: 245px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.callback-panel__privacy {
  margin-bottom: 15px;
  color: #535353;
  font-size: 9px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .callback-panel__privacy {
    font-size: 11px;
  }
}
.callback-panel__privacy a {
  text-decoration: underline;
  color: #343c4b;
}
.callback-panel__privacy a:hover {
  text-decoration: none;
}
.callback-panel__caption {
  margin-bottom: 5px;
  font-size: 9px;
}
@media (min-width: 758px) {
  .callback-panel__caption {
    font-size: 11px;
  }
}
.callback-panel__phone {
  text-decoration: none;
  color: #343c4b;
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 758px) {
  .callback-panel__phone {
    font-size: 28px;
  }
}
.callback-panel__phone:hover {
  text-decoration: underline;
}
.callback-panel__phone tracked-phone {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.callback-success {
  padding: 50px 0;
  text-align: center;
  color: #000;
}
@media (min-height: 800px) {
  .callback-success {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 520px;
  }
}
.callback-success__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}
.callback-success__heading {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .callback-success__heading {
    font-size: 36px;
  }
}
.callback-success__desc {
  font-size: 16px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .callback-success__desc {
    font-size: 20px;
  }
}
