<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.blog-article-meta .blog-author {
  display: flex;
  align-items: center;
}
.blog-article-meta .blog-author p,
.blog-article-meta .blog-author &gt; img {
  margin: 0;
}
.blog-article-meta .blog-author p {
  line-height: 1.65em;
  font-size: 0.9em;
}
.blog-article-meta .blog-author p span {
  opacity: 0.65;
}
.blog-article-meta .blog-author &gt; img.author {
  width: 10vw;
  margin-right: 3vw;
  border-radius: 50%;
  box-shadow: 0 0px 22px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .blog-article-meta .blog-author &gt; img.author {
    width: 5vw;
    margin-right: 2vw;
  }
}
@media screen and (min-width: 1024px) {
  .blog-article-meta .blog-author &gt; img.author {
    width: 3.5vw;
    margin-right: 1vw;
  }
  .blog-article-meta .blog-author p {
    font-size: 0.8em;
  }
}

.crisp-client &gt; #crisp-chatbox &gt; div &gt; a &gt; span:nth-child(2) {
  background-color: #a26c67 !important;
}
.crisp-client .cc-tlyw .cc-qfnu {
  background-color: #a26c67 !important;
}
.crisp-client .cc-kv6t[data-full-view=true] .cc-1xry .cc-unoo .cc-7doi {
  background-color: #a26c67 !important;
}

.modal-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.modal-wrap .modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 6.5vw;
  box-shadow: 0 0 1.25vw rgba(0, 0, 0, 0.5);
  z-index: 10000;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 90%;
}
.modal-wrap .modal .modal-close {
  position: absolute;
  top: 5vw;
  right: 5vw;
  padding: 4vw;
  cursor: pointer;
  z-index: 2;
  background-color: #679DA2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: transform 0.5s ease-in-out;
}
.modal-wrap .modal .modal-close.hide {
  display: none;
}
.modal-wrap .modal .modal-close:before,
.modal-wrap .modal .modal-close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5vw;
  height: 0.5vw;
  background-color: white;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-wrap .modal .modal-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-wrap .modal .modal-close:hover {
  transform: rotate(180deg);
}
.modal-wrap .modal .modal-content {
  overflow-y: auto;
  max-height: 90vh;
  position: relative;
}
.modal-wrap .modal .modal-content .loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.95);
}
.modal-wrap .modal .modal-content .loading .loading-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.modal-wrap .modal .modal-content .loading .loading-inner .loading-icon {
  display: block;
  width: 12vw;
  margin: 0 auto;
}
.modal-wrap .modal .modal-content .loading .loading-inner .loading-icon svg {
  width: inherit;
  height: inherit;
}
.modal-wrap .modal .modal-content .loading .loading-inner p {
  display: block;
  padding: 0;
  margin: 0;
}
.modal-wrap .modal .modal-content p {
  padding: 0;
  margin: 5vw 0;
  font-weight: 500;
}
.modal-wrap .modal .modal-content p.error {
  background-color: #d20000;
  color: white;
  padding: 1vw;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 0 0 2vw;
  display: none;
}
.modal-wrap .modal .modal-content p.error.show {
  display: block;
}
.modal-wrap .modal .modal-content p.password-info {
  margin: 0 0 3vw 0;
  font-style: italic;
  color: #679DA2;
}
.modal-wrap .modal .modal-content form .input {
  border: 0.75vw solid #679DA2;
  padding: 3vw;
  -webkit-border-radius: 2vw;
  -moz-border-radius: 2vw;
  border-radius: 2vw;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 5vw;
  font-size: 16px;
}
.modal-wrap .modal .modal-content form .input.has-info {
  margin-bottom: 3vw;
}
.modal-wrap.loading .modal .modal-content .loading {
  display: block;
}
.modal-wrap.hidden {
  display: none;
}
.modal-wrap.hidden .modal {
  transform: translate(-50%, 0);
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity = 0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
}
.modal-wrap.hidden.show {
  display: block;
}
.modal-wrap.hidden.show.animate .modal {
  transform: translate(-50%, -50%);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity = 100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
}
.modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div:last-child {
  margin-top: 4vw;
}
.modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div h3 {
  color: #679DA2;
}
.modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div p.under-buttons {
  margin-bottom: 0;
  font-style: italic;
}
@media screen and (min-width: 470px) {
  .modal-wrap .modal .modal-content img {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .modal-wrap .modal .modal-content p {
    font-size: 16px;
  }
}
@media screen and (min-width: 560px) {
  .modal-wrap .modal .modal-content img {
    width: 70%;
  }
  .modal-wrap .modal .modal-content p {
    font-size: 16px;
  }
  .modal-wrap .modal .modal-content .btn {
    font-size: 3vw;
  }
}
@media screen and (min-width: 640px) {
  .modal-wrap .modal {
    padding: 3.5vw;
  }
  .modal-wrap .modal .modal-close {
    top: 3vw;
    right: 3vw;
  }
  .modal-wrap .modal .modal-content img {
    width: 60%;
  }
  .modal-wrap .modal .modal-content p {
    font-size: 16px;
    margin: 3vw 0;
  }
  .modal-wrap .modal .modal-content form .input {
    margin-bottom: 3vw;
    padding: 2.5vw;
    border-width: 0.5vw;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .modal-wrap .modal {
    padding: 30px;
    max-width: 694px;
  }
  .modal-wrap .modal .modal-close {
    top: 20px;
    right: 20px;
    padding: 20px;
  }
  .modal-wrap .modal .modal-close:before,
  .modal-wrap .modal .modal-close:after {
    width: 20px;
    height: 2px;
  }
  .modal-wrap .modal .modal-content .loading .loading-inner .loading-icon svg {
    width: 4vw;
    height: 4vw;
  }
  .modal-wrap .modal .modal-content img {
    width: 60%;
  }
  .modal-wrap .modal .modal-content p {
    font-size: 16px;
    margin: 24px 0;
  }
  .modal-wrap .modal .modal-content p.password-info {
    margin: 0 0 1vw 0;
  }
  .modal-wrap .modal .modal-content .btn {
    font-size: 20px;
  }
  .modal-wrap .modal .modal-content form .input {
    padding: 16px;
    border-width: 3px;
    margin-bottom: 24px;
  }
  .modal-wrap .modal .modal-content form .input.has-info {
    margin-bottom: 1vw;
  }
  .modal-wrap.payment .modal {
    max-width: 1000px;
  }
  .modal-wrap.payment .modal .modal-content form .pay-or-demo {
    display: flex;
    justify-content: space-between;
  }
  .modal-wrap.payment .modal .modal-content form .pay-or-demo p .mobile {
    display: none;
  }
  .modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div {
    width: 48%;
    flex-shrink: 0;
    flex-grow: 0;
  }
  .modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div:last-child {
    margin-top: 0;
  }
  .modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div hr {
    display: none;
  }
  .modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div .buttons {
    display: flex;
    flex-wrap: wrap;
  }
  .modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div .buttons .btn {
    box-sizing: border-box;
    margin: 3vw 0 0;
  }
  .modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div .buttons .btn:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div .buttons {
    flex-wrap: nowrap;
  }
  .modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div .buttons .btn {
    margin: 0 4% 0 0;
    width: auto;
  }
  .modal-wrap.payment .modal .modal-content form .pay-or-demo &gt; div .buttons .btn:last-child {
    margin: 0;
  }
}
</pre></body></html>