.card-price {
    display: flex;
    align-items: center;
    gap: 12px;
}
.card-price .items-event {
    position: relative;
    bottom: 0px;
}
.card-price .items-event div {
    background: #95827e;
    padding: 0 10px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none!important;
    color: #fff!important;
}
.card-price .info-text {
    display: inline-block;
    position: absolute;
    bottom: calc(100% + 5px);
    right: 0;
    padding: 10px;
    background-color: #95827e;
    max-width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease 0s;
    color: #fff!important;
}

.card-price .info-text.show-info {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}