/*!
 * royalbue  v1.0.0 (https://pondenet.com/)
 * Copyright 2023 The Pondenet Authors
 */


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Typography
*-----------------------------------------------------------------------------------------------
* Use typography to present your design and content as clearly and efficiently as possible. 
* Download fonts on https: //fonts.google.com/specimen/Inter
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

@import url('../font/Inter-VariableFont_slnt_wght.ttf');

@font-face {
    font-family: 'Nunito Bold';
    src: url('../font/Nunito-Bold.ttf');
    /* font-weight: bold; */
    font-style: normal;
}

:root {

    /* <-Font family-> */
    --font-default: 'Inter', sans-serif;
    --font-heading: 'Nunito Bold', sans-serif;

    /* <-Font size-> */
    --heading-1: 44px;
    --heading-2: 32px;
    --heading-3: 24px;
    --heading-4: 20px;
    --heading-5: 18px;
    --heading-6: 16px;
    --subheading: 12px;
    --body-1: 16px;
    --body-2: 14px;
    --body-3: 12px;
    --subtitle: 10px;


    /* <-Font weight-> */
    --bold-700: 700;
    --medium-600: 600;
    --regular-400: 400;
    --light-300: 300;

    /* <-Line height-> */
    --line-height-54: 54px;
    --line-height-40: 40px;
    --line-height-30: 30px;
    --line-height-28: 28px;
    --line-height-24: 24px;
    --line-height-20: 20px;
    --line-height-18: 18px;
    --line-height-14: 14px;
    --line-height-7: 18px;
    --line-height-7: 7px;

    /* <-Letter spacing-> */
    --min-1px: -1px;
    --min-05px: -0.5px;
    --min-02px: -0.2px;
    --min-04px: -0.4px;
    --04px: 0.4px;
    --02px: 0.2px;

}

/* Setting Gutter */

/* Tablet'ish devices */
@media (min-width: 547px) and (max-width: 767px) {

    .row>.col,
    .row>[class*="col"] {
        padding-right: 8px;
        padding-left: 8px;
    }
}

/* Mobile devices */
@media (max-width: 546px) {

    .row>.col,
    .row>[class*="col"] {
        padding-right: 5px;
        padding-left: 5px;
    }
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Color Guidance
*-----------------------------------------------------------------------------------------------
* See design guideline for color and interaction states
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

:root {

    /* <-Base color-> */
    --black: #000000;
    --white: #FFFFFF;
    --primary: #014AD4;
    --warning: #FCD746;
    --negative: #EF4444;
    --positive: #00E676;
    --pink: #F04082;

    --primary-50: #ecf8ff;
    --primary-100: #d4eeff;
    --primary-200: #b2e3ff;
    --primary-300: #7ed2ff;
    --primary-400: #41b7ff;
    /* <-Primary Color Active-> */
    --primary-500: #1693ff;
    --primary-600: #0070ff;
    --primary-700: #0058fd;
    --primary-800: #014ad4;
    --primary-900: #0841a0;
    --primary-950: #0b2760;

    /* <-Base color variants-> */
    --blue-50: #EDF9FF;
    --blue-100: #D8F0FF;
    --blue-200: #B9E4FF;
    --blue-300: #89D5FF;
    --blue-400: #51BCFF;
    --blue-500: #299CFF;
    --blue-600: #127DFE;
    --blue-700: #00474E;
    --blue-800: #00474E;
    --blue-900: #1052BD;

    --green-50: #EEFFF6;
    --green-100: #D7FFEE;
    --green-200: #B2FFDD;
    --green-300: #77FEC4;
    --green-400: #35F3A1;
    --green-500: #0BE588;
    --green-600: #02B76A;
    --green-700: #068F55;
    --green-800: #0B7046;

    --red-50: #FEF2F2;
    --red-100: #FEE2E2;
    --red-200: #FECACA;
    --red-300: #FCA5A5;
    --red-400: #F87171;
    --red-500: #EF4444;
    --red-600: #DC2626;
    --red-700: #B91C1C;
    --red-800: #991B1B;
    --red-900: #7F1D1D;

    --yellow-50: #FEFCE8;
    --yellow-100: #FEF9C3;
    --yellow-200: #FEF08A;
    --yellow-300: #FDE047;
    --yellow-400: #FACC15;
    --yellow-500: #EAB308;
    --yellow-600: #CA8A04;
    --yellow-700: #A16207;
    --yellow-800: #854D0E;
    --yellow-900: #713F12;

    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #475569;
    --slate-800: #1E293B;
    --slate-900: #0F172A;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Elevation
*-----------------------------------------------------------------------------------------------
* Elevation can be depicted using shadows or other visual cues,
* such as surface fills or opacities.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

:root {

    /* <-Smooth elevation-> */
    --shadow-sm: 0px 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0px 2px 4px rgba(0, 0, 0, 0.06);

    /* <-Material elevation-> */
    --elevation-1: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    --elevation-2: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    --elevation-3: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
    --elavation-4: 0px 6px 10px 4px rgba(0, 0, 0, 0.15), 0px 2px 3px rgba(0, 0, 0, 0.3);
    --elevation-5: 0px 8px 12px 6px rgba(0, 0, 0, 0.15), 0px 4px 4px rgba(0, 0, 0, 0.3);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Backdrop blur styles
*-----------------------------------------------------------------------------------------------
* Blur effect styles you can use with every components for the background
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

:root {

    --backdrop-blur-none: none;
    --backdrop-blur-sm: blur(2px);
    --backdrop-blur: blur(4px);
    --backdrop-blur-md: blur(6px);
    --backdrop-blur-lg: blur(8px);
    --backdrop-blur-xl: blur(12px);
    --backdrop-blur-2xl: blur(20px);
    --backdrop-blur-3xl: blur(32px);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Background 
*-----------------------------------------------------------------------------------------------
* Backgorund color setup
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--slate-500) !important;
}

.bg-success {
    background-color: var(--positive) !important;
}

.bg-warning {
    background-color: var(--warning) !important;
}

.bg-danger {
    background-color: var(--negative) !important;
}

.bg-dark {
    background-color: var(--slate-900) !important;
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* COMPONENTS --> Button
*-----------------------------------------------------------------------------------------------
* Buttons help people take actions,such as sending an email,sharing a document,or liking a 
* comment.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.btn {
    padding: 13px 32px !important;
    border-radius: 8px !important;
    font-size: var(--body-1) !important;
    font-weight: var(--bold-700) !important;
    line-height: var(--line-height-20) !important;
    letter-spacing: var(--02px);
    overflow: hidden;
    transition: all .2s !important;
}

a.btn {
    text-decoration: none !important;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50px !important;
}

.btn-primary:hover {
    background-color: var(--primary-700) !important;
    border: 2px solid var(--primary-700) !important;
    opacity: 88%;
    box-shadow: var(--elevation-1);
}

.btn-primary:focus {
    background-color: var(--primary-800) !important;
    border: 2px solid var(--primary-800) !important
}

.btn-secondary {
    background-color: var(--gray-100);
    color: var(--black);
    border: 2px solid var(--gray-100);
    border-radius: 50px !important;
}

.btn-secondary:hover {
    background-color: var(--gray-200) !important;
    border: 2px solid var(--gray-200) !important;
    color: var(--gray-800) !important;
    opacity: 88%;
}

.btn-secondary:focus {
    color: var(--black);
    background-color: var(--gray-100) !important;
    border: 2px solid var(--gray-100) !important
}

a.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary {
    border-radius: 50px !important;
}

button.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--slate-100) !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.btn-outline-primary:focus {
    border-color: 2px var(--blue-700);
}

.btn-outline-danger {
    border: 2px solid var(--negative);
    color: var(--negative);
    border-radius: 50px !important;
}

.btn-outline-light {
    border: 2px solid var(--gray-200);
    color: var(--gray-500);
}

.btn-outline-light:hover {
    background-color: var(--white) !important;
    color: var(--gray-500) !important;
    border: 2px solid var(--gray-200);
}

.btn-outline-light:focus {
    border-color: 2px var(--gray-200);
}

.btn-primary.disabled {
    background-color: var(--slate-200) !important;
    color: var(--slate-700);
    border: 2px solid var(--slate-200);
}

.btn-outline-primary.disabled {
    color: var(--slate-700);
    border: 2px solid var(--slate-200);
}

.btn-text-primary {
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-text-primary:hover {
    color: var(--primary) !important;
    background-color: var(--slate-100) !important;
    border: 2px solid var(--slate-100) !important;
}

.btn-text-primary:focus {
    color: var(--primary) !important;
    background-color: var(--slate-200) !important;
    border: 2px solid var(--slate-200) !important;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Empty state --> for empty style css
*-----------------------------------------------------------------------------------------------
* STyling every empty state here
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.title-empty-state {
    font-size: var(--body-1);
    font-weight: var(--bold-700);
    line-height: var(--line-height-20);
    letter-spacing: var(--02px);
    color: var(--black);
}


.lead-empty-state {
    font-size: var(--body-3);
    font-weight: var(--bold-700);
    line-height: var(--line-height-14);
    letter-spacing: var(--04px);
    color: var(--gray-700);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Effecf --> Ripple
*-----------------------------------------------------------------------------------------------
* Give some effect like material design
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.ripple:active:after {
    transform: scale(0, 0);
    opacity: .2;
    transition: 0s
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Effecf --> elevations
*-----------------------------------------------------------------------------------------------
* Elevation can be depicted using shadows or other visual cues,
* such as surface fills or opacities.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* <-Smooth elevation-> */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow-xl {
    box-shadow: var(--shadow-xl) !important;
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl) !important;
}

.shadow-inner {
    box-shadow: var(--shadow-inner) !important;
}

.elevated-1 {
    box-shadow: var(--elevation-1);
}

.elevated-2 {
    box-shadow: var(--elevation-2);
}

.elevated-3 {
    box-shadow: var(--elevation-3);
}

.elevated-4 {
    box-shadow: var(--elavation-4);
}

.elevated-5 {
    box-shadow: var(--elevation-5);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Spacing 
*-----------------------------------------------------------------------------------------------
* Give consistency space between a components or elements
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* <-Padding bottom-> */
.pb__2 {
    padding-bottom: 2px;
}

.pb__4 {
    padding-bottom: 4px;
}

.pb__8 {
    padding-bottom: 8px;
}

.pb__12 {
    padding-bottom: 12px;
}

.pb__16 {
    padding-bottom: 16px;
}

.pb__24 {
    padding-bottom: 24px;
}

.pb__32 {
    padding-bottom: 32px;
}

.pb__48 {
    padding-bottom: 48px;
}

.pb__64 {
    padding-bottom: 64px;
}

.pb__96 {
    padding-bottom: 96px;
}

.pb__128 {
    padding-bottom: 128px;
}

/* <-Padding top-> */
.pt__2 {
    padding-top: 2px;
}

.pt__4 {
    padding-top: 4px;
}

.pt__8 {
    padding-top: 8px;
}

.pt__16 {
    padding-top: 16px;
}

.pt__24 {
    padding-top: 24px;
}

.pt__32 {
    padding-top: 32px;
}

.pt__48 {
    padding-top: 48px;
}

.pt__64 {
    padding-top: 64px;
}

.pt__96 {
    padding-top: 96px;
}

.pt__128 {
    padding-top: 128px;
}

/* <-Margin bottom-> */
.mb__2 {
    margin-bottom: 2px;
}

.mb__4 {
    margin-bottom: 4px;
}

.mb__8 {
    margin-bottom: 8px;
}

.mb__12 {
    margin-bottom: 12px;
}

.mb__16 {
    margin-bottom: 16px;
}

.mb__24 {
    margin-bottom: 24px;
}

.mb__32 {
    margin-bottom: 32px;
}

.mb__48 {
    margin-bottom: 48px;
}

.mb__64 {
    margin-bottom: 64px;
}

.mb__96 {
    margin-bottom: 96px;
}

.mb__128 {
    margin-bottom: 128px;
}

/* <-Margin top-> */
.mt__2 {
    margin-top: 2px;
}

.mt__4 {
    margin-top: 4px;
}

.mt__8 {
    margin-top: 8px;
}

.mt__16 {
    margin-top: 16px;
}

.mt__24 {
    margin-top: 24px;
}

.mt__32 {
    margin-top: 32px;
}

.mt__48 {
    margin-top: 48px;
}

.mt__64 {
    margin-top: 64px;
}

.mt__96 {
    margin-top: 96px;
}

.mt__128 {
    margin-top: 128px;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Text field
*-----------------------------------------------------------------------------------------------
* Text fields allow users to enter text into a UI. They typically appear in forms and dialogs.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.form-label {
    font-size: var(--body-2);
    line-height: var(--line-height-20);
    font-weight: var(--regular-400);
    color: var(--gray-900);
}

.form-control,
.form-select {
    padding: 13px 16px;
    font-size: var(--body-2);
    font-weight: var(--regular);
    line-height: var(--line-height-20);
    color: var(--gray-900);
    border-radius: 50px;
    border: 1.5px solid var(--slate-400);
}

.form-control:focus,
.form-select:focus {
    border: 1.5px solid var(--primary) !important;
    color: var(--primary) !important;
    box-shadow: none;
}

input::placeholder {
    color: var(--gray-400) !important;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Layout setup
*-----------------------------------------------------------------------------------------------
* Layout setup for mobile device
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* <-Some CSS Setup - nothing to do with flexbox-> */
html {
    box-sizing: border-box;
    transition: transform .5s, opacity 1s
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: var(--font-default);
}

.app-wrap {
    width: 100%;
    max-width: 480px;
    margin: 0px auto;
    box-sizing: border-box;
    min-height: calc(100vh - 40px);
}

.content {
    background-color: var(--white);
}

.app-wrap {
    display: flex;
    flex-direction: column;
}

/* .app-wrap>* {
    flex: 1 1 auto;
} */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Tabs
*-----------------------------------------------------------------------------------------------
* Tabs organize and support navigation between groups of related content at the same level of 
* hierarchy.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    box-shadow: var(--shadow-md);
}

.bg-nav-pills-light {
    background-color: var(--gray-100);
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Nav borders
*-----------------------------------------------------------------------------------------------
* Styling for auth page
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.nav-borders .nav-link {
    color: var(--gray-400);
    border-bottom-width: 0.125rem;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    width: 50%;
    text-align: center;

}

.nav-borders .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-borders.flex-column .nav-link.active {
    border-right-color: var(--primary);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Bottom navigation
*-----------------------------------------------------------------------------------------------
* Bottom navigation styles
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* <-Bottom navigation-> */

nav {
    list-style-type: none;
    display: inline-block;
    border-width: 1px 0px 0px;
    border-right-style: initial;
    border-bottom-style: initial;
    border-left-style: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image: initial;
    font-weight: 600;
    line-height: 13px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.35s ease 0s;
    text-decoration: none;
    width: 100%;
    max-width: 480px;
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%);
    z-index: 2;
    padding: 8px 0px 18px;
    border-top-style: solid;
    border-top-color: var(--slate-200);
    margin: 0px;
    background-color: var(--white)
}

.nav-item {
    display: inline-block;
    width: 25%;
    height: 2rem;
    font-weight: var(--regular-400);
    font-size: var(--subheading);
    cursor: pointer;
}

.nav-item a {
    color: var(--slate-400);
    font-size: var(--subheading);
}

.nav-item.active a {
    color: var(--primary);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* log in member & voucher page - index.html
*-----------------------------------------------------------------------------------------------
* Styling for auth page
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Components --> Alert
*-----------------------------------------------------------------------------------------------
* Give information about process or flow to users
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


/* Animate slide down */
#slide-alert-cute {
    position: absolute;
    top: -150px;
    padding-top: 2em;
    justify-content: center;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 0.5s;
    animation: slide 1s forwards;
    animation-delay: 0.5s;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    margin: 0px auto;
    box-sizing: border-box;
}

#slide-alert-cute span {
    font-size: var(--body-3);
}

#slide-alert-cute .card-body {
    padding: 13px;
}


.error {
    position: absolute;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    margin: 0px auto;
    box-sizing: border-box;
}




@-webkit-keyframes slide {
    99% {
        top: 0;
    }

    100% {
        top: 0;
        animation-delay: 5s;
    }
}

@keyframes slide {
    99% {
        top: 0;
    }

    100% {
        top: 0;
        animation-delay: 5s;
    }
}




/* Alogin loading */

.spinner {
    width: 60px;
    height: 60px;
    position: relative;
}

.spinner .dot {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
}

.spinner .dot::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--primary);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner .dot {
    animation: spin 2s infinite;
}

.spinner .dot:nth-child(2) {
    animation-delay: 100ms;
}

.spinner .dot:nth-child(3) {
    animation-delay: 200ms;
}

.spinner .dot:nth-child(4) {
    animation-delay: 300ms;
}

.spinner .dot:nth-child(5) {
    animation-delay: 400ms;
}

.text-alogin h5 {
    color: var(--slate-900);
    font-size: var(--emphasized);
    flex-wrap: var(--bold);
    line-height: var(--line-height-emphasized);
}

.text-alogin p {
    color: var(--slate-500);
    font-size: var(--body);
    font-weight: var(--regular);
    line-height: var(--line-height-body);
}

.text-alogin a {
    color: var(--primary);
    font-weight: var(--bold);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Carousel styling
*-----------------------------------------------------------------------------------------------
* Styling for carousel
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.carousel-indicators [data-bs-target] {
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--primary);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Card auth
*-----------------------------------------------------------------------------------------------
* Styling for card auth
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.card-auth {
    border: none;
    margin-top: -1.2rem;
    border-radius: 11px;
}

.card-body-auth {
    padding: 10px;
}

.card-auth .btn {
    padding: 10px 21px !important;
    font-size: var(--subheading) !important;
}

.btn-light {
    background-color: var(--gray-100) !important;
    color: var(--primary);
    border-radius: 50px;
}

.btn-light:focus,
.btn-light:active {
    background-color: var(--gray-100) !important;
    color: var(--primary);
    border: none !important;
}

.QR {
    width: 1.875rem;
    height: 1.875rem;
}

.QR {
    justify-content: center;
}

.QR,
.form-area-top-slide {
    align-items: center;
    display: flex;
}

.bd-right {
    width: 0.125rem;
    height: 0.9375rem;
    border-right: 1px solid rgba(0, 0, 0, .26);
    margin: 0 0.75rem;
}

.form-placehoder {
    display: block;
    width: 50%;
    margin: 0.25rem 0 0.25rem 0.25rem;
}

.form-no-border {
    background-color: initial;
    font-size: 1rem;
    outline: none;
    border: 0;
    border-radius: 0;
    -webkit-appearance: none;
    padding: 0;
}

.bg-shape-primary {
    background-image: url("../img/bg-shape-primary.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-position-y: -8rem;
    margin-bottom: auto;
}

.header-page h4 {
    font-size: var(--heading-4);
    color: var(--gray-900);
    font-weight: var(--bold-700);
    line-height: var(--line-height-28);
}

.header-page p {
    font-size: var(--body-1);
    color: var(--gray-500);
    font-weight: var(--regular-400);
}

.border-header-brand {
    color: var(--white);
    opacity: 25%;
    margin-top: -0.1rem;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Menu item
*-----------------------------------------------------------------------------------------------
* Styling for menu item
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.gap-y-6 {
    row-gap: 1.5rem !important;
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.grid {
    display: grid !important;
}

.items-center {
    align-items: center !important;
}

.flex-col {
    flex-direction: column !important;
}

.flex {
    display: flex !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.w-12 {
    width: 3rem !important;
}

.h-12 {
    height: 3rem !important;
}

.flex {
    display: flex !important;
}

.mt-menu {
    margin-top: 27px;
}

.text-menu {
    font-size: var(--body-3);
    color: var(--white);
}

.divider-label {
    padding-top: 10px;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Card voucher
*-----------------------------------------------------------------------------------------------
* Styling for card voucher
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.mt-voucher-login {
    margin-top: 150px;
}

.card-voucher .card {
    border: none;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border-radius: 11px;
}

.card-voucher .label {
    background-color: var(--pink);
    color: var(--white);
    width: 100px;
    padding: 4px;
    border-radius: 0px 0px 10px 0px;
    font-size: var(--subheading);
    text-align: center;
}

.card-body-voucher {
    padding: 15px 25px 15px 25px;
}

.title-section h6 {
    font-size: var(--body-1);
    color: var(--gray-900);
    font-weight: bold;
}

.title-section a {
    font-size: var(--body-2);
    color: var(--gray-600);
    margin-bottom: 21px;
}

.card-body-voucher p,
.limit,
.devices {
    font-size: var(--body-2);
    color: var(--gray-600);
    margin-bottom: -0.1rem;
}

.card-body-voucher hr {
    border: 2px solid var(--gray-200);
    margin: -0rem 0;
}

.card-body-voucher h4 {
    font-size: var(--heading-4);
    font-weight: var(--bold-700);
    color: var(--black);
    margin-top: 5px;
}

.card-voucher .price {
    font-size: var(--body-1);
    font-weight: var(--bold-700);
    color: var(--primary);
    margin-top: 0.5rem;
}

.card-mod-page-item {
    border: none;
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 10px;
}

.card-mod-page-item p {
    font-size: var(--body-2);
    color: var(--black);
    font-weight: var(--regular);
    line-height: var(--line-height-20);
}

.card-mod-page-item span {
    font-size: var(--body-2);
    color: var(--primary);
    font-weight: var(--bold-700);
    line-height: var(--line-height-20);
    margin-top: -0.8rem;
}

span.price-mod {
    font-size: var(--heading-4);
}

.scroll-horizontal {
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    white-space: nowrap;
    height: 170px;
}

.scroll-horizontal .item-lg {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    width: 305px;
    cursor: pointer;
}

.scroll-horizontal .item-sm {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    width: 5px;
    cursor: pointer;
}

#itemCards {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    width: 5px;
    cursor: pointer;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Profile
*-----------------------------------------------------------------------------------------------
* Styling for profile page
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-top: -3rem;
}

.label-user .username {
    font-size: var(--body-1);
    color: var(--gray-900);
    line-height: var(--line-height-20);
    font-weight: var(--bold-700);
    margin-top: 13px;
}

.label-user .ip {
    font-size: var(--body-3);
    color: var(--gray-600);
    line-height: var(--line-height-14);
    font-weight: var(--regular-400);
    margin-top: 6px;
}

.details {
    margin: 52px 0;
}

.details-item {
    padding: 13px 13px;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    margin-bottom: 13px;
    font-size: 12px;
}

.details-item span {
    font-size: 12px;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* About page
*-----------------------------------------------------------------------------------------------
* Styling for about page
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.img-about {
    border-radius: 8px;
}

.about-content p {
    font-size: var(--body-2);
    color: var(--gray-900);
    line-height: 20px;
    margin: 20px 0;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Help page
*-----------------------------------------------------------------------------------------------
* Styling for help page
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.accordion-item {
    border-color: var(--gray-200) !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--gray-100);
    color: var(--primary);
    z-index: 1;
}


.accordion-button {
    font-size: var(--body-1);
}

.accordion-body {
    font-size: var(--body-2);
    color: var(--gray-700);
}


.data-item .label-data {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: var(--regular-400);
    line-height: 16px;
    letter-spacing: 0.048px;
    font-family: var(--font-default);
    margin-top: 10px;
}

.data-item .data {
    color: var(--primary);
    font-family: var(--font-default);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    /* 137.5% */
    letter-spacing: 0.2px;
}

/* Styling for mobile and tablet */
@media (max-width: 480px) {
    .scroll-horizontal::-webkit-scrollbar {
        /* Hide scrollbar for Chrome, Safari and Opera */
        display: none;
    }
}

/* Styles for devices with a screen width up to 320 pixels (iPhone 5, iPhone SE) */
@media (max-width: 360px) {

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * COMPONENTS --> Button
    *-----------------------------------------------------------------------------------------------
    * Buttons help people take actions,such as sending an email,sharing a document,or liking a 
    * comment.
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    .btn {
        padding: 8px 32px !important;
        font-size: var(--body-3) !important;
        font-weight: var(--bold-700) !important;
        line-height: var(--line-height-20) !important;
        letter-spacing: var(--02px);
        overflow: hidden;
        transition: all .2s !important;
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * Card auth
    *-----------------------------------------------------------------------------------------------
    * Styling for card auth
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    .form-placehoder {
        display: block;
        width: 30%;
        margin: 0.25rem 0 0.25rem 0.25rem;
    }

    .form-no-border {
        background-color: initial;
        font-size: var(--subheading);
        outline: none;
        border: 0;
        border-radius: 0;
        -webkit-appearance: none;
        padding: 0;
    }

    .header-page h4 {
        font-size: var(--heading-6);
        color: var(--gray-900);
        font-weight: var(--bold-700);
        line-height: var(--line-height-28);
    }

    .header-page p {
        font-size: var(--subheading);
        color: var(--gray-500);
        font-weight: var(--regular-400);
        margin-top: -0.5rem;
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * Modal confirm
    *-----------------------------------------------------------------------------------------------
    * Styling for modal confirm
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    .modal-confirm-content h5 {
        font-size: var(--heading-6);
    }

    .modal-confirm-content h5.mt-4 {
        margin-top: 10px !important;
    }

    .modal-confirm-content p {
        font-size: var(--subheading);
    }

    .modal-confirm-content svg {
        width: 48px;
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * Menu item
    *-----------------------------------------------------------------------------------------------
    * Styling for menu item
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    .text-menu {
        font-size: var(--subheading);
        color: var(--white);
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * Card auth
    *-----------------------------------------------------------------------------------------------
    * Styling for card auth
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    .card-body-auth {
        padding: 5px;
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * Card voucher
    *-----------------------------------------------------------------------------------------------
    * Styling for card voucher
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    .mt-voucher-login {
        margin-top: 40px;
    }

    .card-voucher .label {
        width: 80px;
        padding: 2px;
        border-radius: 0px 0px 10px 0px;
        font-size: var(--subtitle);
    }

    .card-body-voucher {
        padding: 8px 25px 8px 15px;
    }

    .title-section h6 {
        font-size: var(--body-2);
    }

    .title-section a {
        font-size: var(--body-3);
    }

    .card-body-voucher p,
    .limit,
    .devices {
        font-size: var(--body-3);
        color: var(--gray-600);
        margin-bottom: -0.1rem;
    }

    .card-body-voucher hr {
        border: 2px solid var(--gray-200);
        margin: -0rem 0;
    }

    .card-body-voucher h4 {
        font-size: var(--heading-6);
        margin-top: 5px;
    }

    .card-voucher .price {
        font-size: var(--body-2);
        font-weight: var(--bold-700);
        color: var(--primary);
        margin-top: 0.5rem;
    }

    .card-mod-page-item {
        border: none;
        padding: 10px;
        border-radius: 8px;
        box-shadow: var(--shadow);
        margin-bottom: 10px;
    }

    .card-mod-page-item p {
        font-size: var(--body-3);
    }

    .card-mod-page-item span {
        font-size: var(--body-2);
        margin-top: -1rem;
    }

    span.price-mod {
        font-size: var(--heading-6);
    }

    .scroll-horizontal {
        overflow-x: scroll;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
        white-space: nowrap;
        /* width: 400px; */
        height: 150px;
    }

    .scroll-horizontal .item-lg {
        width: 245px;
    }

    .scroll-horizontal .item-sm {
        display: inline-block;
        vertical-align: top;
        margin-right: 15px;
        width: 5px;
        cursor: pointer;
    }

    .scroll-horizontal::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome, Safari and Opera */
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * About page
    *-----------------------------------------------------------------------------------------------
    * Styling for about page
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    .about-content p,
    ul,
    li,
    ol,
    a,
    i,
    b {
        font-size: var(--body-3);
        color: var(--gray-900);
        line-height: var(--line-height-18);
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * Help page
    *-----------------------------------------------------------------------------------------------
    * Styling for help page
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    .accordion-button {
        font-size: var(--body-3);
    }

    .accordion-body {
        font-size: var(--subheading);
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * Bottom navigation
    *-----------------------------------------------------------------------------------------------
    * Bottom navigation styles
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

    /* <-Bottom navigation-> */

    nav {
        list-style-type: none;
        display: inline-block;
        border-width: 1px 0px 0px;
        border-right-style: initial;
        border-bottom-style: initial;
        border-left-style: initial;
        border-right-color: initial;
        border-bottom-color: initial;
        border-left-color: initial;
        border-image: initial;
        font-weight: 600;
        line-height: 13px;
        text-align: center;
        vertical-align: middle;
        transition: all 0.35s ease 0s;
        text-decoration: none;
        width: 100%;
        max-width: 480px;
        position: fixed;
        bottom: 0px;
        left: 50%;
        transform: translate(-50%);
        z-index: 2;
        padding: 1px 0px 18px;
        border-top-style: solid;
        border-top-color: var(--slate-200);
        margin: 0px;
        background-color: var(--white)
    }

    .nav-item {
        display: inline-block;
        width: 25%;
        height: 2rem;
        font-weight: var(--regular-400);
        font-size: var(--subtitle);
        cursor: pointer;
    }

    .nav-item a {
        color: var(--slate-400);
        font-size: var(--subtitle);
    }

    .nav-item.active a {
        color: var(--primary);
    }

    .wh-menu-icon {
        width: 48px;
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * Profile
    *-----------------------------------------------------------------------------------------------
    * Styling for profile page
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    .avatar img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        margin-top: -3rem;
    }

    .label-user .username {
        font-size: var(--body-2);
        margin-top: 10px;
    }

    .label-user .ip {
        font-size: var(--body-3);
        color: var(--gray-600);
        line-height: var(--line-height-14);
        font-weight: var(--regular-400);
        margin-top: 3px;
    }

    .details {
        margin: 23px 0;
    }

    .details-item {
        padding: 8px 18px;
        border: 1px solid var(--gray-200);
        border-radius: 50px;
        margin-bottom: 13px;
        font-size: var(--body-3);
    }

    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
    * Empty state --> for empty style css
    *-----------------------------------------------------------------------------------------------
    * STyling every empty state here
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
    section.empty-state img {
        width: 150px;
    }

    .title-empty-state {
        font-size: var(--body-2);
    }


    .lead-empty-state {
        font-size: var(--subtitle);
    }

}