<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    padding: 0;
    margin: 0;
}
.block-vouchers {
    margin: 10px;
}

.d-flex {
    display: flex;
}

.max-w-700px {
    max-width: 700px;
}

.justify-content-center {
    justify-content: center;
}

.direction-column {
    flex-direction: column;
}

.justify-content-between {
    justify-content: space-between;
}

.align-item-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.w-10-percent-important {
    width: 10% !important;
}

.w-100-percent {
    width: 100%;
}

.w-40px {
    width: 40px;
}

.w-50px {
    width: 50px;
}

.w-150px {
    width: 150px;
}

.w-250px {
    width: 250px;
}

.w-300px {
    width: 300px;
}

.h-60px {
    height: 60px;
}

.h-80px {
    height: 80px;
}

.h-30px {
    height: 30px;
}

.border-none {
    border: none;
}

.outline-none {
    outline: none;
}

.margin-right-15 {
    margin-right: 15px;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-right-40 {
    margin-right: 40px;
}

.margin-left-40 {
    margin-left: 40px;
}

.margin-left-80 {
    margin-left: 80px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-bottom-0 {
    margin-bottom: 0;
}

.margin-bottom-16 {
    margin-bottom: 16px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.padding-10 {
    padding: 10px;
}

.p-l-40 {
    padding-left: 40px;
}

.p-r-40 {
    padding-right: 40px;
}

.border-radius-10 {
    border-radius: 10px;
}

.font-size-20px {
    font-size: 20px;
}

.font-size-1vw {
    font-size: 1vw;
}

.font-size-2vw {
    font-size: 2vw;
}

.font-weight-bold {
    font-weight: bold;
}

.h-50vh {
    height: 50vh;
}

.modal-header .close {
    padding: 0;
    margin: 0;

}

#closeModal:focus {
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #BF1F2E;
    border-color: #BF1F2E;
    outline: none;
}

.btn-primary:hover, .btn-primary:disabled {
    color: #fff;
    background-color: rgba(189, 31, 45, 0.85);
    border-color: rgba(189, 31, 45, 0.85);
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show &gt; .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #262525;
    border-color: #262525;
}

.grid-container {
    display: grid;
    gap: 50px;
    grid-template-columns: 25% 25% 25% 25%;
    padding: 10px;
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    text-align: center;
}
.grid-item:hover {
    cursor: pointer;
}

.voucher-logo {
    position: relative;
    display: inline-block;
}

.voucher-logo &gt; span {
    font-size: 1vw;
    font-weight: 600;
    position: absolute;
    bottom: 4%;
    right: 10%;
}

.display-contents {
    display: contents;
}

.button-border-1px {
    border: 1px solid rgb(236, 236, 236);
}

.button-border-1px:hover {
    cursor: pointer;
}

.display-middle {
    display: flex;
    justify-content: center;
}

.spinner {
    position: fixed;
    display: none;
    top: 50%;
    left: 49%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-left: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.scrollable-div {
    max-height: 400px;
    overflow-y: scroll;
    width: 500px;
    margin: 10px;
    border-radius: 15px;
}

.voucher-div {
    margin: 5px;
    background: white;
    padding: 5px;
    border-radius: 10px;
    color: black;
    height: 310px
}

.voucher-div &gt; p {
   margin-left: 20px;
}

.flexepin-logo {
    position: relative;
    margin-bottom: 50px;
}

.flexepin-logo &gt; span {
    position: absolute;
    bottom: 0px;
    left: 78px;
}



@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media only screen and (max-width: 1500px) {
    .grid-container {
        grid-template-columns: 33% 33% 33%;
    }

    .voucher-logo &gt; span {
        font-size: 1.3vw;
    }
}

@media only screen and (max-width: 900px) {
    .grid-container {
        grid-template-columns: 50% 50%;
    }

    .voucher-logo &gt; span {
        font-size: 2vw;
    }
}

@media only screen and (max-width: 500px) {
    .grid-container {
        grid-template-columns: 100%;
    }

    .voucher-logo &gt; span {
        font-size: 4vw;
    }
}</pre></body></html>