.show {
    display: block;
    opacity: 1;
}

.discount_item__wrapper {
    margin: auto 42px 10px 0;
    padding: 10px;
    box-shadow: 0 5px 10px 0 rgba(67, 38, 78, .5);
    border-radius: 9px;
    border-left: 12px solid #ccf;
    min-height: 61px;
    background: #fff;
}

.discount_item__wrapper:first-of-type {
    margin-top: 10px;
}

.discount-item__data {
    width: 100%;
}

.discount-item__data img {
    width: 65px;
    object-fit: cover;
}

.discount-item__name {
    width: 100%;
    margin: 5px 0 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #8a47a5;
}

.discount-name {
    width: calc(100% - 30px);
}

.discount-value {
    padding-left: 7px;
    font-size: 18px;
    font-weight: bold;
    color: #ff1844;
}

.discount-info__wrapper {
    position: relative;
    margin: 0 0 0 5px;
    width: 20px;
    height: 20px;
    font-weight: normal;
    border-radius: 50%;
    background: #8a47a5;
    color: #fff;
    cursor: pointer;
}

.discount-info__wrapper:before {
    content: '?';
}

.discount-info__data {
    display: none;
    opacity: 0;
}

.discount-info__wrapper:hover {
    box-shadow: 0 5px 10px 0 rgba(67, 38, 78, .5);
}

.discount-info__wrapper:hover .discount-info__data {
    width: 220px;
    left: auto;
    text-transform: none;
    border: none;
}

@media (max-width: 1252px) {
    .discount_item__wrapper {
        margin: 0 0 10px;
    }
    .discount-info__wrapper:hover .discount-info__data {
        right: 0;
    }
}