﻿@font-face {
    font-family: 'tajawal-regular';
    src: url('../fonts/tajawal-regular.woff') format('woff'), url('../fonts/tajawal-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
:root {
    --font-style: 'Open Sans', sans-serif, system-ui, -apple-system,"Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --tajawal-regular: tajawal-regular, system-ui, -apple-system,"Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --primary-color: #023fc3; /*blue*/
    --secondary-color: #0196d6; /**light blue*/
    --third-color: #fda800; /*orange*/
    --forth-color: #002475; /*dark blue*/
    --fifth-color: #c6c6c6; /*gray*/
}

/*#region ----Bootstrap Color */
.btn-primary, .btn-primary:active, .btn-primary:visited {
    color: #fff !important;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: normal;
}
    .btn-primary:hover {
        color: #fff !important;
        background-color: var(--third-color);
        border-color: var(--third-color);
        font-weight: normal;
    }

    .btn-primary:focus,
    .btn-primary.focus {
        border-color: var(--primary-color);
        font-weight: normal;
    }

.btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary:visited {
    color: var(--primary-color) !important;
    background-color: #fff;
    border-color: var(--primary-color);
    font-weight: normal;
}

    .btn-outline-primary:hover {
        color: #fff !important;
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        font-weight: normal;
    }

/*
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 1, 96, 150;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.dropdown-item {
    font-size: 9pt;
}
*/
.form-label {
    font-size: 11pt;
    margin-right: 8px;
}
/*#endregion */
/*#region ----General */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main {
    flex: 1 0 auto;
}

.site-footer {
    flex-shrink: 0;
}

body {
    font-family: var(--tajawal-regular) !important;
    background-color: #f0f3f3;
    font-size: 14pt;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color) !important;
    font-weight: 600;
    padding: 16px 0px;
}
a {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: normal;
}

    a:hover {
        color: var(--secondary-color) !important;
    }

    a.active {
        color: var(--forth-color) !important;
        font-weight: 600;
    }

.primary-color {
    color: var(--primary-color) !important;
}

.secondary-color {
    color: var(--secondary-color) !important;
}

.third-color {
    color: var(--third-color) !important;
}

.primary-bg {
    background: var(--primary-color);
    color: #fff !important;
}

.secondary-bg {
    background: var(--secondary-color);
    color: #fff !important;
}

.third-bg {
    background: var(--third-color);
    color: #fff !important;
}
/*#endregion */

/*#region ----Header */
.imgLogo {
    width: 400px;
}
@media (max-width: 575px) {
    .imgLogo  {
        width: 200px;
    }
}
/*#endregion */

/*#region ----Footer */
footer {
    font-size: 12pt;
}
/*#endregion */

/*#region ----Steps */
.steps-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*max-width: 800px;*/
    position: relative;
    padding: 0;
}

    .steps-horizontal::before {
        content: '';
        position: absolute;
        top: 24px;
        left: 0;
        right: 0;
        height: 2px;
        background: #e9ecef;
        z-index: 1;
    }

.step-horizontal {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 14px;
    margin-bottom: 5px;
}

.step-description {
    font-size: 12px;
    color: #6c757d;
    max-width: 150px;
    margin: 0 auto;
}

.step-horizontal.active .step-icon {
    background: #4361ee;
    border-color: #4361ee;
    color: white;
    box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.2);
}

.step-horizontal.complete .step-icon {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
}

/*#endregion */