﻿

@font-face {
    font-family: 'Rubik';
    src: url('/Assets/fonts/Rubik/Rubik-Regular.ttf') format('truetype');
}

* {
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
    line-height: 1 !important; /* Normalizes the line height */
    vertical-align: middle !important; /* Centers text and icons better */
    font-size: inherit !important; /* Keeps the font size consistent */
    font-family: 'Rubik', sans-serif; /* Define your desired font */
}

body {
    direction: rtl;
    font-size: 1.4rem !important;
    font-family: "Rubik", sans-serif;
    overflow-x: hidden !important;
    background-color: #f5f5f5 !important;
}
label {
    position:relative;
}
label.required::after {
    position: absolute;
    content: "*";
    left: -10px;
    color: red;
    font-size: 20px;
}
ul {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}


.pt-page {
    padding-top: 7rem !important;
}
.navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 0;
}

.form-label {
    margin-inline-start: 0.5rem;
}

.cursor-pointer {
    cursor: pointer !important;
}

.spinner-container {
    position: fixed;
    width: 100%;
    height: 100%;
    /*  display: flex;
    justify-content: center;
    align-items: center;*/
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 998;
}

    .spinner-container img {
        position: absolute;
        width: 20%;
        top: 40% !important;
        left: 40% !important;
        transform: translate(-50%,-50%);
        animation: spin .4s alternate infinite;
    }

@keyframes spin {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/*
    general classes
*/
.brd-12 {
    border-radius: 12px !important;
}

.btn-outline-primary {
    background: transparent !important;
    border-color: #0DA9A6 !important;
    color: #0DA9A6 !important;
}

    .btn-outline-primary:hover {
        background: #0DA9A6 !important;
        color: #fff !important;
    }

.title-primary {
    color: #07A869 !important;
}

.bg-sec-blue {
    background-color: #3D7EB9 !important;
}

.btn-primary {
    background: #0DA9A6 !important;
    border-color: #0DA9A6 !important;
}

.form-control, .form-select {
    border-radius: 12px !important;
}

    .form-control:focus, .form-select:focus {
        border-color: #ced4da !important;
        box-shadow: none !important;
    }

.input-group-text.select-append[b-l4ui59uy1o] {
    border-radius: 12px 0 0 12px !important;
}

.input-group > .form-control, .input-group > .form-select {
    border-radius: 0 12px 12px 0 !important;
}

/*body {
    height: 100vh;*/ /* Make body content larger to enable scrolling */
    /*overflow-y: scroll;*/ /* Enable vertical scrolling */
/*}*/

    body::-webkit-scrollbar {
        width: 12px;
    }

    body::-webkit-scrollbar-thumb {
        background-color: #C2C1C1;
        border-radius: 6px;
    }

    body::-webkit-scrollbar-track {
        background: #F5F5F5;
    }

i {
    /*    font-size: inherit !important; */
    font-size: 16px !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

h1, h2, h3, h4, h5, h6 {
    /*    font-weight: bold; */
    margin-bottom: 0.5em; /* Uniform spacing below all headings */
}

.h3, h3 {
    font-size: 2.2rem !important;
}

.h2, h2 {
    font-size: calc(1.325rem + .9vw) !important;
}

@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 2.5rem !important;
    }
}

@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 2rem !important;
    }
}

input.form-control, select.form-control {
    font-size: 19px !important;
}

select {
    line-height: 1.2 !important;
}


.brd-12 {
    border-radius: 12px !important;
}


.primary-color-bg {
    background-color: rgba(13, 169, 166, 1) !important;
}

.secondary-color-3 {
    color: rgba(61, 126, 185, 1) !important;
}



.btn-outline-primary {
    border-color: #0DA9A6 !important;
    color: #0DA9A6 !important;
}

    .btn-outline-primary:hover {
        background: #0DA9A6 !important;
        color: #fff !important;
    }

.title-primary {
    color: #07A869;
}

.btn-primary {
    background-color: #117286;
    border-radius: 12px;
    padding: 0.5rem 1.8rem;
    box-shadow: none !important;
    transition: all .3s ease;
    color: #fff;
    border: none;
}

.button.disabled {
    background-color: #1172868f;
    color: #fff;
}

.btn-primary-outine {
    background-color: #fff;
    color: #2a728a;
    border: 0.5px solid #2a728a;
    border-radius: 12px;
}





.content-container {
    background: #F5F5F5 !important;
}

.btn-outline-secondary, .btn-search {
    border-radius: 12px;
    color: #f47c32 !important;
    border: 1px solid #f47c32 !important;
    background: #fff !important;
    box-shadow: 0px 4px 4px 1px rgba(160, 155, 155, 0.16) !important;
}

    .btn-secondary,
    .btn-secondary:hover,
    .btn-outline-secondary:hover {
        background: #F47C32 !important;
        color: #fff !important;
        border-color: #F47C32;
    }

input.form-control {
    border-radius: 8px !important;
}


.error-message {
    font-size: 16px !important;
    margin-inline: 8px !important;
    margin-top: 5px !important;
    display:inline-block !important;
}

video {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}