.compare-button-wrap {
    min-width: 170px;
    display: flex;
    justify-content: center;
  }
  .compare-button-wrap .compare-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    padding: 5px 15px;
  }
  .compare-button-wrap .compare-button p {
    font-family: medium;
    font-weight: 400;
    font-size: 11px;
    color: #5d5d5d;
    margin: 0;
    text-align: center;
  }
  
  .compared {
    background-color: lightcoral !important;
  }
  
  .offerts-content-bar-row-description {
    width: 100%;
  }
  
  .compare-bar {
    z-index: 1;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    box-shadow: 0px 0px 30px -10px rgba(0, 0, 0, 0.15);
  }
  .compare-bar a {
    border: 2px solid #0064be;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: medium;
    font-size: 12.8px;
    color: #0064be;
  }
  .compare-bar a span {
    margin: 0 2px;
  }
  .compare-bar a:hover {
    background-color: #0064be;
    color: white;
  }
  
  .compare-bar-non-active {
    display: none;
  }
  
  .compare-bar-a-disable {
    pointer-events: none;
  }
  
  .compare-bar-a-disable-color {
    color: #B5B5B5 !important;
    border: 2px solid #B5B5B5 !important;
  }
  
  .compare-button-wrap-mobile {
    display: none;
  }
  
  @media (max-width: 700px) {
    .compare-bar {
      flex-direction: column;
    }
    .compare-bar a:first-of-type {
      margin-bottom: 10px;
    }
  }
  @media (max-width: 899px) {
    .compare-button-wrap-mobile {
      display: flex;
    }
    .compare-button-wrap-desktop {
      display: none;
    }
    .offerts-content-bar-row-description {
      width: auto;
    }
    .compare-button-wrap {
      width: 100%;
    }
    .compare-button-wrap .compare-button {
      padding: 8px 4px;
      width: 90%;
      margin-top: 8px;
      background-color: #dfdfdf;
    }
  }