<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --color-green: #00a94f;
    --color-grey: #999999;
    --color-grey-100: #EAEAEA;
    --color-grey-200: #F7F7F7;
    --color-grey-300: #848484;
    --color-grey-400: #717171;
    --color-grey-500: #666666;
    --color-grey-800: #333333;
    /* --font-helvetica: Helvetica, Arial, sans-serif; */
}

/* Font Weight */

.font-medium {
    font-weight: 500 !important;
}

.font-bold {
    font-weight: 700 !important;
}

/* Font Family */

.font-helvetica {
    /* font-family: var(--font-helvetica) !important; */
}

/* Font Size */

.text-6 {
    font-size: 6px;
}

.text-7 {
    font-size: 7px;
}

.text-14 {
    font-size: 13px !important;
}

.text-18 {
    font-size: 18px !important;
}

.text-19 {
    font-size: 19px;
}

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

.text-24 {
    font-size: 24px;
}

@media screen and (min-width: 768px) {
    .text-md-16 {
        font-size: 16px !important;
    }
}

/* Color */

.c-white {
    color: #ffffff;
}

.c-grey {
    color: var(--color-grey) !important;
}

.c-grey-200 {
    color: var(--color-grey-200) !important;
}

.c-grey-400 {
    color: var(--color-grey-400) !important;
}

.c-grey-500 {
    color: var(--color-grey-500) !important;
}

.c-grey-800 {
    color: var( --color-grey-800) !important;
}

/* Background Color */

.bg-green {
    background-color: var(--color-green);
}

.bg-white {
    background-color: #ffffff;
}

.bg-grey-200 {
    background-color: var(--color-grey-200);
}

.bg-grey-300 {
    background-color: var(--color-grey-300);
}

/* Width */

.width-30 {
    width: 30px;
}

.width-65 {
    width: 65px;
}

.width-85 {
    width: 85px;
}

.width-sm-full {
    width: 100%;
}

.width-md-half {
    width: 50%;
}

@media screen and (min-width: 768px) {
    .width-md-half {
        width: 50%;
    }
    .width-md-260 {
        width: 260px;
    }
    .width-md-360 {
        width: 47%;
    }
}

@media screen and (min-width: 992px) {
    .width-lg-260 {
        width: 260px;
    }
    .width-lg-330 {
        width: 330px;
    }
    .width-lg-360 {
        width: 360px;
    }
}

@media screen and (min-width: 1024px) {
    .width-xl-260 {
        width: 260px;
    }
    .width-xl-330 {
        width: 330px;
    }
    .width-xl-360 {
        width: 360px;
    }
}

/* Height */

.height-30 {
    height: 30px;
}

.height-65 {
    height: 65px;
}

.h-full {
    height: 100%;
}

/* Min Height */

.min-height-auto {
    min-height: auto;
}

.min-height-137 {
    min-height: 137px;
}

@media screen and (min-width: 768px) {
    .min-height-md-125 {
        min-height: 125px;
    }
    .min-height-md-145 {
        min-height: 145px;
    }
    .min-height-md-162 {
        min-height: 162px;
    }
}

@media screen and (min-width: 992px) {
    .min-height-lg-125 {
        min-height: 125px;
    }
    .min-height-lg-137 {
        min-height: 137px;
    }
}

@media screen and (min-width: 1024px) {
    .min-height-xl-125 {
        min-height: 125px;
    }
    .min-height-xl-137 {
        min-height: 137px;
    }
}

/* Max Width */

.max-width-740 {
    max-width: 740px !important;
}

.max-width-780 {
    max-width: 780px !important;
}

/* Flex */

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

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

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

.flex-1 {
    flex: 1;
}

/* Gap */

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

@media screen and (max-width: 991px) {
    .flex-lg-1 {
        flex: 1;
    }
}

@media screen and (max-width: 767px) {
    .flex-md-none {
        flex: none;
    }
    .flex-md-auto {
        flex: auto;
    }
}

/* Align */

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

.text-left {
    text-align: left !important;
}

/* Line Height */

.leading-1 {
    line-height: 1;
}

.leading-1-25 {
    line-height: 1.25;
}

/* Margin */

.mt-5 {
    margin-top: 5px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mx-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

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

@media screen and (min-width: 768px) {
    .mt-md-0 {
        margin-top: 0 !important;
    }
}

/* Padding */

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.pt-20 {
    padding-top: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-custom-1 {
    padding: 20px;
}

.pb-custom-2 {
    padding: 10px 10px !important;
}

@media screen and (min-width: 416px) {
    .pb-custom-2 {
        padding: 10px 15px !important;
    }
}

@media screen and (min-width: 768px) {
    .pb-md-0 {
        padding-bottom: 0px;
    }
    .pb-custom-1 {
        padding: 20px 5px;
    }
}

@media screen and (min-width: 992px) {
    .pb-custom-1 {
        padding: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .pb-custom-1 {
        padding: 20px;
    }
}

.hr-line {
    border-top: 1px solid var(--color-grey-250);
    padding-top: 20px;
    margin-top: 30px;
    margin-bottom: -15px;
}

.hr-line-top {
    border-top: 1px solid var(--color-grey-250);
    padding-top: 20px;
    margin-top: 30px;
    margin-bottom: -15px;
}

@media screen and (min-width: 768px) {
    .hr-line {
        border-top: 0;
        padding-top: 0;
    }
}

/* Border Radius */

.border-bottom-right-radius {
    border-bottom-right-radius: 0px !important;
}

.border-top-radius {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.border-bottom-radius {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.border-top-radius-15 {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.border-bottom-radius-15 {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Box Shadow */

.shadow-1 {
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.06);
}

/* Border Set */

.border {
    border-width: 1px;
}

.border-solid {
    border-style: solid;
}

.border-grey-100 {
    border-color: var(--color-grey-100);
}

.border-custom {
    border-width: 0px 1px 1px 1px;
}

.border-custom-2 {
    border-width: 0px 1px 0px 1px;
}

@media screen and (min-width: 768px) {
    .border-custom {
        border-width: 1px 1px 1px 0px;
    }
    .border-custom-2 {
        border-width: 0;
    }
}

/* Vertical */

.middle {
    vertical-align: middle;
}

/* Position */

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

</pre></body></html>