.tomei-redemption-point-input {
    width: 80px!important;
    height: 25px!important;
}

.tomei-redemption-box{
    margin-top: 5px;
}

.tomei-redemption-input-box-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 5px;
}

.tomei-redemption-input-box-group span {
    font-size: 14px;
}

.redeem-invalid{
    color:#dc3545;
    font-weight: bold;
}

.redeem-valid{
    color:#28a745;
    font-weight: bold;
}

.tomei-points-balance {
    font-size: 18px;
    font-weight: bold;
}

.tomei-voucher-box {
    margin: 10px 0 10px 0;
}

/******************************
    My voucher page starts here.
********************************/
.voucher-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.voucher-claim-box{
    margin-top: 30px;
}

.voucher-detail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.voucher-detail-row-one {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

.voucher-detail-row-two {
    display: flex;
    flex-direction: row;
    align-items: end;
    margin-top: 20px;
}

.voucher-actions {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-left: auto;
}

.voucher-detail-container {
    margin-top: 10px;
}

.grid-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}
.voucher-body {
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    padding-top: 1.25rem;
    border: 1px solid rgba(0,0,0,.125);
}
.voucher-card {
    width: 24rem;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    min-width: 0;
    padding: 1rem 1rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05)!important
}
.voucher-image {
    width: 150px;
}
.voucher-description {
    width: 200px;
}
/**************************
    Voucher Nav starts here
****************************/
.voucher-nav {
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.voucher-nav a {
    float: left;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none !important;
    font-size: 17px;
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.voucher-nav a:hover {
    background-color: #ddd;
    color: black;
}
.voucher-nav a.active {
    color: black;
    font-weight:bolder;
    border-bottom: 1px solid purple;
}
.voucher-nax a:focus {
    outline: none;
}
/****************************
    modal styling starts here
******************************/
.tomei-modal-background {
    position: fixed;
    background-color: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    z-index: 1500;
    width: 100%;
    display: none;
    justify-content: center;
    height: 100%;
    align-items: center;
}
.tomei-modal-dialog {
    display: none;
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.tomei-modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 1200px;
    height: 600px;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}
.tomei-modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    background-color: white;
}
.tomei-modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    overflow-x: auto;
}
.tomei-modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    position: sticky;
    bottom: 0;
}
.tomei-modal-close-button {
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
.tomei-modal-close-button:hover {
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
.tomei-modal-footer-close-button {
    background-color: transparent;
    border: 0;
}
.tomei-modal-footer-close-button:hover {
    background-color: transparent;
    border: 0;
}