.promotion_container {
    background-color: white;
    padding: 50px 15px;
    min-height: 65vh;
}

.promo_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.voucher {
    padding: 20px 35px;
    border-radius: 15px;
    position: relative;
    background-color: #f1f1f1;
    margin: 15px 25px;
}

.voucher:before, .voucher:after {
    position: absolute;
    content: "";
    height: 40px;
    border-radius: 40px;
    z-index: 1;
    top: 50px;
    background-color: white;
    width: 40px;
}

.voucher:before {
    left: -20px;
}

.voucher:after {
    right: -20px;
}

.voucher .main {
    display: flex;
    justify-content: space-around;
    padding: 0 10px;
    align-items: center;
}

.voucher .co-img img {
    width: 100px;
    height: 100px;
    margin-left: -10px;
}

.voucher .vertical {
    border-left: 3px dashed #8888;
    height: 100px;
    position: absolute;
    left: 40%;
}

.voucher .content .disc_value {
    font-size: 28px;
    color: red;
}

.voucher_search_result .voucher-not-found {
    padding: 5px;
    color: red;
    font-weight: bold;
    float: right;
}

.voucher .content {
    min-width: 160px;
}

.voucher .content h2 {
    font-size: 18px;
    color: #565656;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.voucher .content p {
    color: #696969;
    font-size: 14px;
}

.voucher .content label {
    display: flex;
    align-items: center;
    color: #8888;
}

.voucher .content label svg {
    margin-right: 10px;
}

@media screen and (max-width: 1200px) {
    .voucher .content .disc_value {
        font-size: 22px;
    }
    .voucher {
        margin: 15px 10px;
        padding: 20px 25px;
    }
    .voucher .content {
        min-width: 135px;
    }
}