/* domain Complete Styles */
/* Modern Financial Quiz Website - All Styles in One File */

/* CSS Variables */
:root {
    --primary-blue: #4c6ef5;
    --secondary-blue: #364fc7;
    --accent-cyan: #22d3ee;
    --light-blue: #e7f3ff;
    --gradient-main: linear-gradient(135deg, #4c6ef5 0%, #22d3ee 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --shadow-main: 0 20px 60px rgba(76, 110, 245, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:  Arial, sans-serif;
    background: var(--light-blue);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-main);
    border-radius: 5px;
    border: 2px solid var(--light-blue);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-blue);
}

/* Selection Color */
::selection {
    background: var(--primary-blue);
    color: white;
}

::-moz-selection {
    background: var(--primary-blue);
    color: white;
}

/* Header Styles */
.Modern_Header_Navigation_Zone {
    background: var(--gradient-main);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.Modern_Header_Navigation_Zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.Brand_Logo_Financial_Text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.Brand_Logo_Financial_Text i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.Navigation_Menu_Link_Style {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.Navigation_Menu_Link_Style:hover {
    color: white;
}

/* Hero Section */
.Hero_Section_Content_Area {
    background: var(--light-blue);
    padding: 4rem 0;
    text-align: center;
}

.Hero_Main_Heading_Text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.Hero_Description_Paragraph {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

/* Quiz Container */
.Quiz_Container_Main_Block {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-main);
    padding: 0;
    margin: 2rem auto;
    max-width: 800px;
    overflow: hidden;
    border: 1px solid rgba(76, 110, 245, 0.1);
}

.Quiz_Header_Progress_Section {
    background: var(--gradient-main);
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
}

.Quiz_Title_Main_Display {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Progress Bar */
.Progress_Bar_Container_Wrapper {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.Progress_Fill_Animation_Bar {
    background: white;
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.Progress_Fill_Animation_Bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* Quiz Content */
.Quiz_Content_Body_Section {
    padding: 3rem;
}

.Question_Display_Container {
    margin-bottom: 2.5rem;
}

.Question_Number_Badge_Style {
    background: var(--gradient-main);
    color: white;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.Question_Text_Main_Display {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Answer Options */
.Answer_Options_List_Container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.Answer_Choice_Interactive_Item {
    background: var(--gradient-card);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 500;
}

.Answer_Choice_Interactive_Item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.Answer_Choice_Interactive_Item.selected {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(76, 110, 245, 0.1), rgba(34, 211, 238, 0.05));
    box-shadow: 0 8px 32px rgba(76, 110, 245, 0.2);
}

.Answer_Radio_Button_Element {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.Answer_Choice_Interactive_Item.selected .Answer_Radio_Button_Element {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
}

.Answer_Choice_Interactive_Item.selected .Answer_Radio_Button_Element::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Navigation Buttons */
.Navigation_Button_Container {
    display: flex;
    justify-content: center;
    padding: 2rem 3rem;
    border-top: 1px solid #f3f4f6;
}

.Primary_Action_Button_Style {
    background: var(--gradient-main);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(76, 110, 245, 0.3);
    position: relative;
    overflow: hidden;
}

.Primary_Action_Button_Style:disabled {
    background: #d1d5db;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.Primary_Action_Button_Style:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 110, 245, 0.4);
}

.Primary_Action_Button_Style::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.Primary_Action_Button_Style:hover::before {
    left: 100%;
}

/* Results Section */
.Results_Success_Display_Zone {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    border-radius: 20px;
    margin: 2rem 0;
}

.Success_Icon_Large_Display {
    font-size: 4rem;
    color: var(--success-green);
    margin-bottom: 1.5rem;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.Success_Heading_Main_Text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.Success_Description_Sub_Text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.Offer_Highlight_Box_Style {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--warning-yellow);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

/* Quiz Step Visibility */
.Hidden_Quiz_Step {
    display: none;
}

.Visible_Quiz_Step {
    display: block;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styles */
.Modal_Form_Container_Style .modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: var(--shadow-main);
}

.Modal_Form_Container_Style .modal-header {
    background: var(--gradient-main);
    color: white;
    border-radius: 24px 24px 0 0;
    border: none;
}

.Modal_Form_Container_Style .modal-dialog {
    transition: transform 0.3s ease-out;
}

.Modal_Form_Container_Style.show .modal-dialog {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Form Inputs */
.Form_Input_Field_Modern {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
    font-family: inherit;
}

.Form_Input_Field_Modern:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(76, 110, 245, 0.25);
    outline: none;
}

.Form_Input_Field_Modern::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

/* Footer */
.Footer_Section_Contact_Area {
    background: var(--secondary-blue);
    color: white;
    padding: 3rem 0;
    margin-top: 5rem;
}

/* Cookie Consent */
.Cookie_Consent_Banner_Bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.Cookie_Accept_Button_Style {
    background: var(--primary-blue);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.Cookie_Accept_Button_Style:hover {
    background: var(--secondary-blue);
}

/* Submit Page Styles */
.Success_Page_Hero_Background {
    background: var(--gradient-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.Success_Page_Hero_Background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="celebration" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="2" fill="%2322d3ee" opacity="0.15"/><circle cx="30" cy="30" r="1.5" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="200" height="200" fill="url(%23celebration)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.Success_Message_Container_Card {
    background: white;
    border-radius: 32px;
    padding: 4rem;
    box-shadow: var(--shadow-main);
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(76, 110, 245, 0.1);
}

.Success_Icon_Animated_Display {
    font-size: 5rem;
    color: var(--success-green);
    margin-bottom: 2rem;
    animation: successBounce 2s ease-in-out infinite;
    position: relative;
}

.Success_Icon_Animated_Display::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 3px solid var(--success-green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes successBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-10px) scale(1.05); }
    60% { transform: translateY(-5px) scale(1.02); }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
}

.Main_Success_Title_Text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.Success_Subtitle_Description {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.Email_Status_Notification_Box {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid var(--success-green);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.Email_Status_Icon_Element {
    font-size: 2rem;
    color: var(--success-green);
    animation: emailPulse 2s ease-in-out infinite;
}

@keyframes emailPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.Email_Status_Text_Content {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--success-green);
}

.Next_Steps_Information_Container {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 2px solid rgba(76, 110, 245, 0.1);
}

.Next_Steps_Title_Heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.Benefit_List_Container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.Benefit_Item_Interactive_Row {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.Benefit_Item_Interactive_Row:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(76, 110, 245, 0.15);
    border-color: rgba(76, 110, 245, 0.2);
}

.Benefit_Icon_Styled_Element {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-right: 1.2rem;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 110, 245, 0.1);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.Benefit_Text_Content_Block {
    flex: 1;
}

.Benefit_Title_Strong_Text {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.Benefit_Description_Sub_Text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.Return_Home_Button_Style {
    background: var(--gradient-main);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 16px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(76, 110, 245, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.Return_Home_Button_Style:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(76, 110, 245, 0.4);
    color: white;
}

.Return_Home_Button_Style::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.Return_Home_Button_Style:hover::before {
    left: 100%;
}

.Privacy_Notice_Text_Block {
    background: rgba(107, 114, 128, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.Privacy_Notice_Text_Block p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    text-align: center;
}

.Privacy_Icon_Shield_Element {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.Loading_Dots_Animation_Text {
    display: inline-block;
}

.Loading_Dots_Animation_Text::after {
    content: '';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Floating Elements */
.Floating_Particle_Element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 8s ease-in-out infinite;
}

.Floating_Particle_Element:nth-child(1) {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.Floating_Particle_Element:nth-child(2) {
    width: 12px;
    height: 12px;
    background: rgba(34, 211, 238, 0.4);
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.Floating_Particle_Element:nth-child(3) {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-5px); }
}

/* Confetti Animation */
.Confetti_Animated_Element {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: confettiFall 4s linear infinite;
    pointer-events: none;
}

.Confetti_Animated_Element:nth-child(odd) {
    background: var(--primary-blue);
}

.Confetti_Animated_Element:nth-child(even) {
    background: var(--accent-cyan);
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .Quiz_Container_Main_Block {
        margin: 1rem;
        border-radius: 20px;
    }
    
    .Quiz_Content_Body_Section {
        padding: 2rem 1.5rem;
    }
    
    .Hero_Main_Heading_Text {
        font-size: 2rem;
    }
    
    .Question_Text_Main_Display {
        font-size: 1.2rem;
    }
    
    .Answer_Choice_Interactive_Item {
        padding: 1.2rem;
    }
    
    .Success_Message_Container_Card {
        padding: 2.5rem 2rem;
        margin: 1rem;
        border-radius: 24px;
    }
    
    .Main_Success_Title_Text {
        font-size: 2.2rem;
    }
    
    .Success_Subtitle_Description {
        font-size: 1.1rem;
    }
    
    .Success_Icon_Animated_Display {
        font-size: 4rem;
    }

    .Benefit_Item_Interactive_Row {
        padding: 1.2rem;
    }

    .Next_Steps_Information_Container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .Primary_Action_Button_Style {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .Form_Input_Field_Modern {
        padding: 0.875rem 1.25rem;
    }
    
    .Navigation_Button_Container {
        padding: 1.5rem 2rem;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --shadow-main: 0 4px 12px rgba(0, 0, 0, 0.5);
        --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .Primary_Action_Button_Style {
        border: 2px solid var(--primary-blue);
    }
    
    .Form_Input_Field_Modern {
        border-width: 3px;
    }
}

/* Focus States for Keyboard Navigation */
.Primary_Action_Button_Style:focus,
.Form_Input_Field_Modern:focus,
.Answer_Choice_Interactive_Item:focus {
    outline: 3px solid rgba(76, 110, 245, 0.5);
    outline-offset: 2px;
}

.Answer_Choice_Interactive_Item:focus {
    border-color: var(--primary-blue);
}

/* Print Styles */
@media print {
    .Primary_Action_Button_Style,
    .Modal_Form_Container_Style,
    .Cookie_Consent_Banner_Bottom {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .Quiz_Container_Main_Block,
    .Success_Message_Container_Card {
        border: 2px solid black !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }
}

/* Utility Classes */
.Text_Center { text-align: center; }
.Text_Left { text-align: left; }
.Text_Right { text-align: right; }

.Hidden { display: none; }
.Visible { display: block; }

.Margin_Auto { margin: 0 auto; }
.Width_Full { width: 100%; }
.Height_Full { height: 100%; }

.Cursor_Pointer { cursor: pointer; }
.Cursor_Not_Allowed { cursor: not-allowed; }

.Position_Relative { position: relative; }
.Position_Absolute { position: absolute; }
.Position_Fixed { position: fixed; }

.Z_Index_Low { z-index: 1; }
.Z_Index_Medium { z-index: 100; }
.Z_Index_High { z-index: 1000; }
.Z_Index_Modal { z-index: 9999; }