:root {
    --height: 40px;
}
.ticket-voucher-border {
    padding: 6px;
    border: 1px dashed #D3D6D9;
    border-radius: 8px;
}
.ticket-voucher {
    width: 150px;
    height: var(--height);
    line-height: 40px;
    position: relative;
    transition: all 300ms cubic-bezier(0.03, 0.98, 0.53, 0.99) 0s;
    border-radius: 10px;
}

.ticket-voucher-blue {
    background: #0068C8;
    border-radius: 10px;
}

.ticket-voucher-orange {
    background: #ED671B;
}

.ticket-voucher:before,
.ticket-voucher:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    width: 23px;
    height: 40px;
    border-radius: 50%;
    z-index: 2;
    background-color: #EFF4FD;
}

.ml-22 {
    margin-left: 22px;
}

.ticket-voucher:before {
    border: 5px solid #ffffff;
    left: 41%;
    top: -34px;
    clip-path: circle(31% at 50% 100%);
}

.ticket-voucher:after {
    border: 5px solid #ffffff;
    right: 44%;
    top: 84%;
    clip-path: circle(31% at 50% 0%);
}

.ticket-voucher-content-wrapper-blue {
    width: 100%;
    height: 100%;
    position: relative;
    background: #0068C8;
    border-radius: 10px;
}

.ticket-voucher-content-wrapper-orange {
    width: 100%;
    height: 100%;
    position: relative;
    background: #ed671b;
    border-radius: 10px;
}

.ticket-voucher-left {
    width: 50%;
    border-right: 2px dashed white;
    background: #4c95d9;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    display: block;
    margin-top: -1px;
    margin-left: -1px;
    height: 41px;
    padding: 10px;
    line-height: 25px;
}

.background-ticket-voucher-left-blue {
    /*background: #4c95d9;*/
    background: #0068C8;
}

.background-ticket-voucher-left-orange {
    /*background: #f2955f;*/
    background: #ed671b;
}

.ticket-voucher-right {
    width: 50%;
    padding: 10px;
    height: var(--height);
}

.background-ticket-voucher-right-blue {
    background: #0053a0;
}

.background-ticket-voucher-right-orange {
    background: #ED671B;
}

.background-ticket-voucher-right-text-blue {
    background: #0f5da6;
}

.background-ticket-voucher-right-text-orange {
    background: #be5216;
}

.ticket-voucher-right .ticket-voucher-right-box-text {
    /* padding: 2px; */
    margin: 7px 8px;
    line-height: 0;
    border-radius: 2px;
}

.ticket-voucher-right .ticket-voucher-right-box-text p {
    padding: 5px 8px 3px;
    font-weight: 500;
    font-size: 8px;
    line-height: 9px;
    text-align: center;
    margin: 0;
    color: white;
}

.ticket-voucher-right .ticket-voucher-right-box-number p {
    padding: 0px 0px;
    font-size: 10px;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-size: 12px;
    line-height: 150%;
    margin: 0;
    color: white;
}
