<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(300px);
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInTop {
    from {
      opacity: 0;
      transform: translateY(-300px);
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInBottom {
    from {
      opacity: 0;
      transform: translateY(300px);
    }
    to {
      opacity: 1;
    }
  }
  
  .pushly_close {
    position: absolute;
    right: 0px;
    top: 10px;
    width: 12px;
    height: 12px;
    opacity: 0.6;
    z-index:100001;
  }
  .pushly_close:hover {
    opacity: 1;
  }
  .pushly_close:before, .pushly_close:after {
    position: absolute;
    left: 0;
    content: ' ';
    height: 12px;
    width: 2px;
    background-color: #333;
  }
  .pushly_close:before {
    transform: rotate(45deg);
  }
  .pushly_close:after {
    transform: rotate(-45deg);
  }
  
  .pushly_container {
    z-index: 2147483638;
    overflow: hidden;	
    position: relative;
    cursor: pointer;
  }
  
  .progress {
    height: 5px;
    width: 100%;
  }
  .progress .in {
    animation: fill 15s linear 1;
    height: 100%;
    background-color: #94ed7b;
  }
  
  @keyframes fill {
    0% {
      width: 0%;
    }
    100% {
      width: 100%;
    }
  }

  /** PUSHLY VIEW DEFAULT **/

  #pushly_view_default {
    position: fixed;
    top: 50%;
    right: 5px;
    max-width: 55%;
    background-color: #fff;
    animation: fadeInTop 1s ease-in-out;
    border-radius: 3px;
    box-shadow: rgba(99,99,99,.2) 0px 2px 8px 0px;
    border: 1px solid #3636363d;
    border-right: none;
    transform: translateY(-50%);
  }
  
  #pushly_view_default .pushly_image{
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  
  #pushly_view_default .pushly_body{
    margin:5px;
    min-height: 50px;
  }
  
  #pushly_view_default .pushly_title{
    margin-bottom: 5px;
  }

  #pushly_view_default .pushly_title A{
    font-size:1.1rem;
    color:#c80000;
    font-weight: bold;
  }
  
  #pushly_view_default .pushly_description{
    font-size:1rem;
    line-height: 1.1rem;
    color:#363636;
  }

  #pushly_view_default .pushly_close {
    position: absolute;
    top: -20px;
    right: 0px;
    width: 25px;
    height: 20px;
    opacity: 1;
    z-index: 100001;
    background-color: #f3f3f3;
    border-radius: 3px 3px 0 0;
    border: 1px solid #d7d7d7e0;
  }

  #pushly_view_default .pushly_close::before, #pushly_view_default .pushly_close::after {
    position: absolute;
    left: 11px;
    content: ' ';
    height: 10px;
    width: 2px;
    background-color: #555;
    top: 5px;
  }

  .pushly_container.left #pushly_view_default{
    left: 5px;
  }

  .pushly_container.left #pushly_view_default .pushly_close{
    left: 0px;
  }
  
  @media only screen and (min-width: 768px) {
    
    #pushly_view_default {
      max-width: 300px;
      top: 45vh;
      right: 0px;
      animation: fadeInBottom 1s ease-in-out;
    }
  }

  /**** VIEW 5 ***/
  .pushly_view_5 {
    border: 1px solid #CFCFCF;
    margin: 0 auto 15px;
    cursor: pointer;
    border-radius:2px;
    overflow: hidden;
  }

  .pushly_view_5 .pushly_body{
    padding: 10px 10px 15px;
    line-height: 1.1rem;
  }

  .pushly_view_5 .pushly_title {
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.4rem;
  }

  .pushly_view_5 .pushly_description{
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.1rem;
  }

  /**** VIEW 6 ***/
  .pushly_view_6{
    width:80%;
  }

  .pushly_view_6 .read_more{
    text-transform: uppercase;
    color: #777;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .pushly_view_6 .pushly_body SPAN{
    background-color: #ff4900;
    padding: 2px 4px;
    box-decoration-break: clone;
    line-height: 1.3rem;
    font-size: 1.1rem;
    color: #fff;
    font-weight: bold;   
    cursor: pointer;
  }

  /**** VIEW 2 ***/
  .pushly_view_2 {
    max-width: 100% !important;
    bottom:0 !important;
    left:0 !important;
    top:auto !important;
    right: 0 !important;
    box-shadow: none !important;
    transform: translateY(0) !important;
    border-radius: 0 !important;
  }

  .pushly_view_2 .pushly_content {
    display: flex;
    align-items: center;
    column-gap: 15px;
    line-height: 1.1rem;
  }

  .pushly_view_2 .pushly_content .pushly_image {
    width: 40% !important;
    height: auto !important;
  }</pre></body></html>