<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  .desires-container {
      font-family: "Trebuchet MS", Tahoma, Verdana, Arial, Helvetica, sans-serif;
      margin: 10px 0pt 15px;
      width: 100%;
      text-align: left;
  }
  
  .desires-container table {
      width: 100%;
  }
  
  .desires-container thead tr th,
  .desires-container tfoot tr th {
      border: 1px solid #FFF;
      font-size: 11pt;
      padding: 4px;
      padding-right: 20px;
      font-weight: bold;
  }
  
  .desires-container tbody td {
      color: #3D3D3D;
      padding: 4px;
      font-size: 11pt;
      background-color: #FFF;
      vertical-align: top;
  }
  
  .desires-container tbody tr.odd td {
      background-color: #E0F4D7;
  }
  .view-text {
      width: 90%;
  }
  
  .desires-container .actions {
      text-align: center;
  }
  
  .desires-container .action-list {
      padding: 0px;
      margin: 0px;
  }
  
  .desires-container .action-list li {
      list-style-type: none;
      display: inline-block;
  }
  
  .desires-container table td {
      vertical-align: middle;
      border-bottom: 1px dashed #DAE1E3;
  }
  
  .desires-container .product-image {
      width: 30px;
      vertical-align: middle;
  }
  
  .desires-container .price .old-price {
      text-decoration: line-through;
      color: #E63131;
  }
  
  .desires-container .product a {
      text-decoration: none;
  }
  /*Стили кнопки*/
  
  .wishlist {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        display: inline-block;
        padding: 5px 0;
    
  }
  
  .btn.addToWishList {
    text-decoration: none;
    font-size: 13px;
    box-shadow: none;
    position: relative;
    margin: 0 15px;
    font-size: 16px;
    color: #03a9f4;
    border-bottom: 1px dashed #03a9f4;
    cursor: pointer;
    
  }
  
  .btn.addToWishList:hover {
        background-color: transparent;
        border-bottom: 1px solid transparent;
        box-shadow: none;
        color: #0391d3;

  }
  
  .btn.addToWishList:active {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #0391d3;

  }
  /* a.btn.addToWishList.desire-added:before {
      content: "";
      background: url("../images/wishlist.png")15px 0;
  } */
  /* a.btn.addToWishList:before {
      content: "";
      background: url("../images/wishlist.png")0 0;
      position: absolute;
      width: 15px;
      height: 14px;
      margin-left: -17px;
      margin-top: 3px;
  } */
  /*Для стилей на странице product.php*/
  
  .product-details-block .btn.addToWishList {
      position: relative;
  }
  
  .product-details-block .btn.addToWishList:before {}
  /*Для стилей на странице index.php*/
  
  .owl-item .product-wrapper .btn.addToWishList {}
  
  #desires {
      background: white;
      width: 50px;
      height: 50px;
      padding: 5px;
      position: fixed;
      top: 20%;
      right: 20px;
      z-index: 99999;
      border: 0.5em solid #CCC;
  }
  
  #desires .count {
      display: inline-block;
      position: relative;
      padding-top: 0.5em;
      padding-left: 1em;
      padding-right: 1em;
      padding-bottom: 0.5em;
      right: -30px;
      top: -60px;
      background: orange;
      border-radius: 1.5em;
      border: 1px solid #CD7F32;
      color: #000;
  }
  
  .desire-icon {
      background: url("../images/wishlist_off.png");
      display: block;
      position: relative;
      top: 8px;
      left: 8px;
      width: 16px;
      height: 14px;
  }
  
  .c-tab__content#c-tab__desires a.desire-delete,
  .c-tab__content#c-tab__desires a.product-buy {
      text-decoration: none!important;
      color: #fff!important;
  }
  
  .desire-popup-alert {
      top: calc(50% - 100px);
      left: calc(50% - 200px);
      background-color: #fff;
      min-width: 400px;
      height: 200px;
      position: fixed;
      z-index: 99999;
      box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.22);
      border-radius: 5px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px;
      box-sizing: border-box;
      max-width: 400px;
  }

    @media(max-width: 420px) {
        .desire-popup-alert {
            left: calc(50% - 150px);
            min-width: 300px;
            max-width: 300px;
        }
    }


  .desire-popup-alert__icon {
    width: 80px;
    height: 80px;
    background: aliceblue;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
  
  .desire-popup-alert .message {
      font-size: 16px;
      text-align: center;
      font-family: inherit;
  }
  
  .desire-popup-alert__close {
    width: 30px !important;
    height: 30px !important;
    position: absolute;
    background: #fff !important;
    padding: 0 !important;
    border: none;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desire-popup-alert__close:focus {
    outline: none;
}

.desire-popup-alert__close svg {
    width: 10px;
    height: 10px;
    fill: #03a9f4;
}</pre></body></html>