:root {
    --font-almarai-light: "Almarai", sans-serif;
    --font-almarai-regular: "Almarai", sans-serif;
    --font-almarai-bold: "Almarai", sans-serif;
    --font-almarai-extrabold: "Almarai", sans-serif;

    --weight-light: 300;
    --weight-regular: 400;
    --weight-bold: 700;
    --weight-extrabold: 800;

    --primary-900: #021624;
    --primary-800: #042D47;
    --primary-700: #06436B;
    --primary-600: #085A8E;
    --primary-500: #0A70B2;
    --primary-400: #3B8DC1;
    --primary-300: #6CA9D1;
    --primary-200: #9DC6E0;
    --primary-100: #CEE2F0;
    --primary-50:  #E8F0F5;

    --secondary-900: #091A03;
    --secondary-800: #123406;
    --secondary-700: #1C4E0A;
    --secondary-600: #25680D;
    --secondary-500: #2E8210;
    --secondary-400: #589B40;
    --secondary-300: #82B470;
    --secondary-200: #ABCD9F;
    --secondary-100: #D5E6CF;

    --accent-900: #2F0507;
    --accent-800: #5E0A0E;
    --accent-700: #8C0F14;
    --accent-600: #BB141B;
    --accent-500: #EA1922;
    --accent-400: #EE474E;
    --accent-300: #F2757A;
    --accent-200: #F7A3A7;
    --accent-100: #FBD1D3;
    




}

* {
    margin:0;
    padding:0;
    
}

body {
    font-family: var(--font-almarai-regular);
    font-weight: var(--weight-regular);
}

svg:hover{
    cursor:pointer;
}

.background_svg {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
	box-sizing: border-box;
	display: block;
	background-color: #0e4166;
    background-image: linear-gradient(to bottom, rgba(14, 65, 102, 0.86), #0e4166);
    position:fixed;
    width:100%;
    height:100%;
    z-index:-1;
}
	
input:focus,select:focus {
    outline: none;
    background-color: #005b99 !important;
    
}


input::placeholder {
    color: var(--primary-300);
    opacity: 1;
}

textarea::placeholder {
    color: var(--primary-300);
    opacity: 1;
}

::selection{
    background-color: white;
    color: black;
}

.top_bar_title {
    font-size:20px;
}



/* إخفاء الأسهم في جميع المتصفحات */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none; /* إخفاء الأسهم في Chrome, Safari, Edge */
    margin: 0; /* إزالة أي مسافة زائدة */
}

/* إخفاء الأسهم في Firefox */
input[type="number"] {
    -moz-appearance: textfield; /* إخفاء الأسهم في Firefox */
}


.confirm_your_email{
    position: absolute;
    height: 80px;
    background-color: var(--accent-600);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    top: 8px;
    color: white;
}

.confirm_your_email a{
    color:white;
    margin:0 10px;
    font-weight:bold;
}

.water {
    width: 620px;
    height: 620px;
    background-color: skyblue;
    border-radius: 50%;
    box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, .5), 0 4px 10px 0 rgba(0, 0, 0, .5);
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
}

.water:before, .water:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    background-color: #fff;
}

.water:before {
    border-radius: 45%;
    background: rgba(255, 255, 255, .7);
    animation: wave 5s linear infinite;
}

.water:after {
    border-radius: 35%;
    background: rgba(255, 255, 255, .3);
    animation: wave 5s linear infinite;
}

        
        
        
/* تنسيق عام لجميع التشيكبوكس في الموقع */
input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background-color: #2a2d3e; /* خلفية داكنة */
    border: 2px solid #29abe2; /* حدود باللون الأزرق */
    border-radius: 3px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

input[type="checkbox"]:checked {
    background-color: #29abe2; /* لون الخلفية عند التحديد */
    border-color: #29abe2;
}

input[type="checkbox"]:checked::before {
    content: "\2713"; /* رمز علامة صح */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: white; /* لون علامة الصح */
}

input[type="checkbox"]:hover {
    border-color: #1d86ad; /* لون الحدود عند المرور بالفأرة */
}
 
        
        
        
        
        
        
        
        
        
        
        
        @keyframes wave{
            0%{
                transform: rotate(0);
            }
            100%{
                transform: rotate(360deg);
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
    /* عندما يكون عرض الشاشة أقل من 768px */
    @media screen and (max-width: 768px) {
        .side_bar,.user_info {
            display: none;
        }
        .top_bar_title{
            font-size:13px;
        }
        

        .content {
            width: 95%;
            margin: 0 auto; /* محاذاة للمركز */
        }
        h2{
            margin-bottom: 10px;
        }
        .card-container{
                justify-content: center;
        }
        h1{
            font-size:20px;
        }
        
        
    }
    
        
        
