.discount-info{
    position: relative;
    height: 100%;
}
.discount-info-list{
    position: relative;
}
.discount-info .slick-dots-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.discount-info-arrow {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.discount-info-prev {
    transform: rotate(90deg);
}
.discount-info-next {
    order: 1;
    transform: rotate(-90deg);
}
.discount-info-list-item {
    float: left;
    width: 100%;
    outline: none;
}
.discount-info-list-item:nth-child(n+2){
    display: none;
}
.discount-info-list.slick-initialized .discount-info-list-item:nth-child(n){
    display: block !important;
}
.discount-info-item-caption{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
.discount-info-item-badge{
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid rgba(19, 92, 174, .2);
    color: #135CAE;
    font-weight: 500;
    line-height: 1;
}
.discount-info-item-text {
    margin-top: 20px;
    line-height: 1.5;
}
.discount-info-item-more{
    margin-top: 15px;
}
.discount-info-item-more .link{
    font-weight: 500;
}