/* flex */
.d-block {
    display: block !important;
}
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.d-none {
    display: none !important;
}
.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}
.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}
.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
} 
.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
} 
.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
} 
.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}
.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    
}
.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}
.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}
.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}
.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}
.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}
.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}
.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}
.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}
.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}
.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}
.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}
.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}
.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}
.align-self-stretch {
    align-self: stretch !important;
}
/* end flex */

/* width */
.full-width{
    width: 100%;
}
.vw-20{
    width: 20vw;
}
.vw-50{
    width: 50vw;
}
.vw-70{
    width: 70vw;
}
.vw-80{
    width: 80vw;
}
.vw-90{
    width: 90vw;
}
.vw-100{
    width: 100vw;
}
/* end width */
/* height */
.full-height{
    height: 100%;
}
.vh-70{
    height: 70vh;
}
.vh-80{
    height: 80vh;
}
.vh-90{
    height: 90vh;
}
.vh-100{
    height: 100vh;
}
/* end height */
.gap-5{
    gap: 5px;
}
.gap-8{
    gap: 8px;
}
.gap-10{
    gap: 10px;
}
.gap-15{
    gap: 15px;
}
.gap-20{
    gap: 20px;
}
.gap-30{
    gap: 30px;
}
/* margin and padding */
.m-0 { margin: 0 !important; }
.m-3 { margin: 3px !important; }
.m-4 { margin: 4px !important; }
.m-5 { margin: 5px !important; }
.m-8 { margin: 8px !important; }
.m-10 { margin: 10px !important; }
.m-12 { margin: 12px !important; }
.m-15 { margin: 15px !important; }
.m-16 { margin: 16px !important; }
.m-18 { margin: 18px !important; }
.m-20 { margin: 20px !important; }
.m-30 { margin: 30px !important; }
.m-40 { margin: 40px !important; }
.mt-3, .my-3 { margin-top: 3px !important; }
.mt-4, .my-4 { margin-top: 4px !important; }
.mt-5, .my-5 { margin-top: 5px !important; }
.mt-8, .my-8 { margin-top: 8px !important; }
.mt-10, .my-10 { margin-top: 10px !important; }
.mt-12, .my-12 { margin-top: 12px !important; }
.mt-15, .my-15 { margin-top: 15px !important; }
.mt-16, .my-16 { margin-top: 16px !important; }
.mt-18, .my-18 { margin-top: 18px !important; }
.mt-20, .my-20 { margin-top: 20px !important; }
.mt-30, .my-20 { margin-top: 20px !important; }
.mt-40, .my-40 { margin-top: 40px !important; }
.mb-3, .my-3 { margin-bottom: 3px !important; }
.mb-4, .my-4 { margin-bottom: 4px !important; }
.mb-5, .my-5 { margin-bottom: 5px !important; }
.mb-8, .my-8 { margin-bottom: 8px !important; }
.mb-10, .my-10 { margin-bottom: 10px !important; }
.mb-12, .my-12 { margin-bottom: 12px !important; }
.mb-15, .my-15 { margin-bottom: 15px !important; }
.mb-16, .my-16 { margin-bottom: 16px !important; }
.mb-18, .my-18 { margin-bottom: 18px !important; }
.mb-20, .my-20 { margin-bottom: 20px !important; }
.mb-30, .my-30 { margin-bottom: 30px !important; }
.mb-40, .my-40 { margin-bottom: 40px !important; }
.mr-3, .mx-3 { margin-right: 3px !important; }
.mr-4, .mx-4 { margin-right: 4px !important; }
.mr-5, .mx-5 { margin-right: 5px !important; }
.mr-8, .mx-8 { margin-right: 8px !important; }
.mr-10, .mx-10 { margin-right: 10px !important; }
.mr-12, .mx-12 { margin-right: 12px !important; }
.mr-15, .mx-15 { margin-right: 15px !important; }
.mr-16, .mx-16 { margin-right: 16px !important; }
.mr-18, .mx-18 { margin-right: 18px !important; }
.mr-20, .mx-20 { margin-right: 20px !important; }
.mr-30, .mx-30 { margin-right: 30px !important; }
.mr-40, .mx-40 { margin-right: 40px !important; }
.ml-3, .mx-3 { margin-left: 3px !important; }
.ml-4, .mx-4 { margin-left: 4px !important; }
.ml-5, .mx-5 { margin-left: 5px !important; }
.ml-8, .mx-8 { margin-left: 8px !important; }
.ml-10, .mx-10 { margin-left: 10px !important; }
.ml-12, .mx-12 { margin-left: 12px !important; }
.ml-15, .mx-15 { margin-left: 15px !important; }
.ml-16, .mx-16 { margin-left: 16px !important; }
.ml-18, .mx-18 { margin-left: 18px !important; }
.ml-20, .mx-20 { margin-left: 20px !important; }
.ml-30, .mx-30 { margin-left: 30px !important; }
.ml-40, .mx-40 { margin-left: 40px !important; }
.p-0 { padding: 0 !important; }
.p-3 { padding: 3px !important; }
.p-4 { padding: 4px !important; }
.p-5 { padding: 5px !important; }
.p-8 { padding: 8px !important; }
.p-10 { padding: 10px !important; }
.p-12 { padding: 12px !important; }
.p-15 { padding: 15px !important; }
.p-16 { padding: 16px !important; }
.p-18 { padding: 18px !important; }
.p-20 { padding: 20px !important; }
.p-30 { padding: 30px !important; }
.p-40 { padding: 40px !important; }
.pt-3, .py-3 { padding-top: 3px !important; }
.pt-4, .py-4 { padding-top: 4px !important; }
.pt-5, .py-5 { padding-top: 5px !important; }
.pt-6, .py-6 { padding-top: 6px !important; }
.pt-8, .py-8 { padding-top: 8px !important; }
.pt-10, .py-10 { padding-top: 10px !important; }
.pt-12, .py-12 { padding-top: 12px !important; }
.pt-15, .py-15 { padding-top: 15px !important; }
.pt-16, .py-16 { padding-top: 16px !important; }
.pt-18, .py-18 { padding-top: 16px !important; }
.pt-20, .py-20 { padding-top: 20px !important; }
.pt-30, .py-30 { padding-top: 30px !important; }
.pt-40, .py-40 { padding-top: 40px !important; }
.pb-3, .py-3 { padding-bottom: 3px !important; }
.pb-4, .py-4 { padding-bottom: 4px !important; }
.pb-5, .py-5 { padding-bottom: 5px !important; }
.pb-6, .py-6 { padding-bottom: 6px !important; }
.pb-8, .py-8 { padding-bottom: 8px !important; }
.pb-10, .py-10 { padding-bottom: 10px !important; }
.pb-12, .py-12 { padding-bottom: 12px !important; }
.pb-15, .py-15 { padding-bottom: 15px !important; }
.pb-16, .py-16 { padding-bottom: 16px !important; }
.pb-18, .py-18 { padding-bottom: 18px !important; }
.pb-20, .py-20 { padding-bottom: 20px !important; }
.pb-30, .py-30 { padding-bottom: 30px !important; }
.pb-40, .py-40 { padding-bottom: 40px !important; }
.pr-3, .px-3 { padding-right: 3px !important; }
.pr-4, .px-4 { padding-right: 4px !important; }
.pr-5, .px-5 { padding-right: 5px !important; }
.pr-8, .px-8 { padding-right: 8px !important; }
.pr-10, .px-10 { padding-right: 10px !important; }
.pr-12, .px-12 { padding-right: 12px !important; }
.pr-15, .px-15 { padding-right: 15px !important; }
.pr-16, .px-16 { padding-right: 16px !important; }
.pr-18, .px-18 { padding-right: 18px !important; }
.pr-20, .px-20 { padding-right: 20px !important; }
.pr-30, .px-30 { padding-right: 30px !important; }
.pr-40, .px-40 { padding-right: 40px !important; }
.pl-3, .px-3 { padding-left: 3px !important; }
.pl-4, .px-4 { padding-left: 4px !important; }
.pl-5, .px-5 { padding-left: 5px !important; }
.pl-8, .px-8 { padding-left: 8px !important; }
.pl-10, .px-10 { padding-left: 10px !important; }
.pl-12, .px-12 { padding-left: 12px !important; }
.pl-15, .px-15 { padding-left: 15px !important; }
.pl-16, .px-16 { padding-left: 16px !important; }
.pl-18, .px-18 { padding-left: 18px !important; }
.pl-20, .px-20 { padding-left: 20px !important; }
.pl-30, .px-30 { padding-left: 30px !important; }
.pl-40, .px-40 { padding-left: 40px !important; }
/* end margin and padding */

/* start background color */
.bg-white {
    background-color: #ffffff;
}
.bg-jungle-green{
    background: #1AB394;
}
.bg-rajah{
    background: #F8AC59;
}
.bg-light-pink{
    background: #FFA3A3;
}
.bg-urobilin{
    background: #E0A82E;
}
.bg-bright-gray {
    background: #eeeeee;
}
/* end background color */
/* start text color */
.text-silver-foil{
    color: #AFAFAF;
}
.text-old-silver{
    color: #858585;
}
.text-field-drab{
    color: #785916;
}
.text-dark-liver{
    color: #4E4E4E;
}
.text-platinum {
    color: #E2E2E2;
}
.text-urobilin{
    color: #E0A82E;
}
/* end text color */
.line-horizontal{
    display: flex;
    align-self: stretch;
    height: 1px;
    background: #E5E6E7;
}
.line-vertical{
    display: flex;
    align-self: stretch;
    width: 1px;
    background: #E5E6E7;
}
.font-weight-300{ font-weight: 300 !important; }
.font-weight-400{ font-weight: 400 !important; }
.font-weight-500{ font-weight: 500 !important; }
.font-weight-600{ font-weight: 600 !important; }
.font-weight-700{ font-weight: 700 !important; }
.font-size-8-p {
    font-size: 8px !important;
}
.font-size-9-p {
    font-size: 9px !important;
}
.font-size-10-p {
    font-size: 10px !important;
}
.font-size-11-p {
    font-size: 11px !important;
}
.font-size-12-p {
    font-size: 12px !important;
}
.font-size-13-p {
    font-size: 13px !important;
}
.font-size-14-p {
    font-size: 14px !important;
}
.font-size-15-p {
    font-size: 15px !important;
}
.font-size-16-p {
    font-size: 16px !important;
}
.font-size-18-p {
    font-size: 18px !important;
}
.font-size-20-p {
    font-size: 20px !important;
}
.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 2px #E0A82E;
}
