.modal-window {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.25);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    &:target {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }
    & > div {
      min-width: 350px;
      max-height: 300px;
      overflow-y: scroll;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 2em;
      background: white;
    }
  }

  .modal-close {
    color: #aaa;
    line-height: 50px;
    font-size: 80%;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    text-decoration: none;
    &:hover {
      color: black;
    }
  }

  .modal-window {
    & > div {
      border-radius: 1rem;
    }
  }

  .modal-window div:not(:last-of-type) {
    margin-bottom: 15px;
  }

  .btn-modal {
    position: relative;
    /* padding: 1em 1.5em; */
    border-radius: 0.5rem;
    text-decoration: none;
    }

    .cart-badge {
        position: absolute;
        bottom: -15px;
        right: -10px;
        background-color: #ff0270;
        color: #fff;
        font-size: 0.8rem;
        font-weight: bold;
        padding: 0.3em 0.6em;
        border-radius: 50%;
        min-width: 20px;
        height: 20px;
        text-align: center;
        line-height: 1.2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    @media(max-width: 768px){
        .cart-badge{
            bottom: -7px;
        }
    }

