.ps-popup-custom {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.ps-popup-custom {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
.ps-popup-custom.active {
    visibility: visible;
    opacity: 1;
    transition-delay: 0.5s;
}
.ps-popup__content-voucher {
    border-radius: 10px;
    position: relative;
    max-width: 500px;
    width: 100%;
    transition: tranform 0.4s ease;
    height: 400px;
    border-radius: 15px;
} 
.ps-popup__content-voucher-detail {
    border-radius: 10px;
    position: relative;
    max-width: 500px;
    width: 100%;
    transition: tranform 0.4s ease;
    height: 400px;
    border-radius: 15px;
}
.ps-popup__close-custom {
    display: inline-block;
    position: absolute;
    padding: 5px 5px 10px 12px;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    font-size: 15pt;
    background-color: #000;
    border: none;
    border-radius: 0;
    color:white;
    border-radius: 20%;
}
.ps-popup__close-custom:hover {
    color: #1a1a1a;
}
.ps-popup__content-voucher .ps-form__content-custom-voucher {
    overflow-x: hidden;
    margin-top: 60px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px 20px;
}
.ps-popup__content-voucher-detail .ps-form__content-custom-voucher-detail {
    max-height: 200px;
    overflow: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px 20px;
}
.btn-use-voucher {
    cursor: pointer;
    transition: all 0.4s ease;
    bottom: 0px;
    position: absolute;
    width: 100%;
    border: 0px;
    background: #007bff;
    color: white;
    font-size: 14pt;
    padding: 20px 0px;
}
